| Current Path : /home/mysqldbbackup/databases/ |
| Current File : /home/mysqldbbackup/databases/rawenergyco_wp2357.sql |
/*!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.5.25-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: rawenergyco_wp2357
-- ------------------------------------------------------
-- Server version 10.5.25-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 `wpdh_commentmeta`
--
DROP TABLE IF EXISTS `wpdh_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_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 `wpdh_commentmeta`
--
/*!40000 ALTER TABLE `wpdh_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpdh_commentmeta` ENABLE KEYS */;
--
-- Table structure for table `wpdh_comments`
--
DROP TABLE IF EXISTS `wpdh_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_comments`
--
/*!40000 ALTER TABLE `wpdh_comments` DISABLE KEYS */;
INSERT INTO `wpdh_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://en-gb.wordpress.org/','','2023-05-17 16:11:07','2023-05-17 15:11:07','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wpdh_comments` ENABLE KEYS */;
--
-- Table structure for table `wpdh_gf_draft_submissions`
--
DROP TABLE IF EXISTS `wpdh_gf_draft_submissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_gf_draft_submissions` (
`uuid` char(32) NOT NULL,
`email` varchar(255) DEFAULT NULL,
`form_id` mediumint(10) unsigned NOT NULL,
`date_created` datetime NOT NULL,
`ip` varchar(45) NOT NULL,
`source_url` longtext NOT NULL,
`submission` longtext NOT NULL,
PRIMARY KEY (`uuid`),
KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_gf_draft_submissions`
--
/*!40000 ALTER TABLE `wpdh_gf_draft_submissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpdh_gf_draft_submissions` ENABLE KEYS */;
--
-- Table structure for table `wpdh_gf_entry`
--
DROP TABLE IF EXISTS `wpdh_gf_entry`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_gf_entry` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`form_id` mediumint(10) unsigned NOT NULL,
`post_id` bigint(10) unsigned DEFAULT NULL,
`date_created` datetime NOT NULL,
`date_updated` datetime DEFAULT NULL,
`is_starred` tinyint(10) NOT NULL DEFAULT 0,
`is_read` tinyint(10) NOT NULL DEFAULT 0,
`ip` varchar(45) NOT NULL,
`source_url` varchar(200) NOT NULL DEFAULT '',
`user_agent` varchar(250) NOT NULL DEFAULT '',
`currency` varchar(5) DEFAULT NULL,
`payment_status` varchar(15) DEFAULT NULL,
`payment_date` datetime DEFAULT NULL,
`payment_amount` decimal(19,2) DEFAULT NULL,
`payment_method` varchar(30) DEFAULT NULL,
`transaction_id` varchar(50) DEFAULT NULL,
`is_fulfilled` tinyint(10) DEFAULT NULL,
`created_by` bigint(10) unsigned DEFAULT NULL,
`transaction_type` tinyint(10) DEFAULT NULL,
`status` varchar(20) NOT NULL DEFAULT 'active',
PRIMARY KEY (`id`),
KEY `form_id` (`form_id`),
KEY `form_id_status` (`form_id`,`status`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_gf_entry`
--
/*!40000 ALTER TABLE `wpdh_gf_entry` DISABLE KEYS */;
INSERT INTO `wpdh_gf_entry` VALUES (1,1,NULL,'2023-06-07 18:05:17','2023-06-07 18:05:17',0,0,'2a09:bac2:377f:ebe::178:142','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(2,2,NULL,'2023-06-08 11:24:46','2023-06-08 11:24:46',0,0,'2a12:6fc0::1c1','https://rawenergy.co.uk/oldbackup/https://rawenergy.co.uk/oldbackup/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.792.0 Safari/535.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(3,1,NULL,'2023-06-10 22:03:29','2023-06-10 22:03:29',0,0,'49.37.54.137','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(4,1,NULL,'2023-06-11 05:14:08','2023-06-11 05:14:08',0,0,'49.37.54.137','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(5,1,NULL,'2023-06-12 22:25:18','2023-06-12 22:25:18',0,0,'49.37.55.233','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(6,1,NULL,'2023-06-13 07:27:38','2023-06-13 07:27:38',0,0,'173.82.245.30','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(7,1,NULL,'2023-06-14 19:06:40','2023-06-14 19:06:40',0,0,'172.86.122.201','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(8,1,NULL,'2023-06-16 03:33:47','2023-06-16 03:33:47',0,0,'154.84.142.122','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(9,1,NULL,'2023-06-16 13:47:59','2023-06-16 13:47:59',0,0,'2a02:c7c:b43b:7700:55ca:66e7:3873:c66a','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(10,1,NULL,'2023-06-17 10:00:31','2023-06-17 10:00:31',0,0,'62.122.184.194','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(11,1,NULL,'2023-06-19 17:26:35','2023-06-19 17:26:35',0,0,'104.234.10.203','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(12,2,NULL,'2023-06-19 22:56:15','2023-06-19 22:56:15',0,0,'2a00:23c7:b0a8:d801:a01a:222a:455:5a7b','https://rawenergy.co.uk/oldbackup/team/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(13,1,NULL,'2023-06-20 06:43:12','2023-06-20 06:43:12',0,0,'2a0d:3344:185:4110:c8bb:60c9:dcd:a97c','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(14,1,NULL,'2023-06-21 13:46:28','2023-06-21 13:46:28',0,0,'194.80.134.138','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'active'),(15,1,NULL,'2023-06-22 03:19:14','2023-06-22 03:19:14',0,0,'62.122.184.194','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(16,1,NULL,'2023-06-22 05:52:06','2023-06-22 05:52:06',0,0,'104.234.10.203','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(17,2,NULL,'2023-06-24 13:35:47','2023-06-24 13:35:47',0,0,'88.97.48.220','https://rawenergy.co.uk/oldbackup/team/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(18,2,NULL,'2023-06-26 17:55:38','2023-06-26 17:55:38',0,0,'81.244.116.177','https://rawenergy.co.uk/oldbackup/','curl/7.54.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(19,1,NULL,'2023-06-29 15:54:44','2023-06-29 15:54:44',0,0,'27.34.104.7','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(20,1,NULL,'2023-06-30 11:21:54','2023-06-30 11:21:54',0,0,'167.88.164.158','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(21,1,NULL,'2023-07-03 09:00:49','2023-07-03 09:00:49',0,0,'134.202.123.84','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(22,1,NULL,'2023-07-05 08:55:26','2023-07-05 08:55:26',0,0,'185.74.27.70','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(23,1,NULL,'2023-07-07 22:40:45','2023-07-07 22:40:45',0,0,'172.86.121.242','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(24,1,NULL,'2023-07-10 12:22:39','2023-07-10 12:22:39',0,0,'172.86.121.242','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(25,1,NULL,'2023-07-10 22:22:15','2023-07-10 22:22:15',0,0,'193.56.113.12','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(26,1,NULL,'2023-07-12 00:32:02','2023-07-12 00:32:02',0,0,'172.86.121.242','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(27,1,NULL,'2023-07-14 04:04:30','2023-07-14 04:04:30',0,0,'172.86.121.242','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(28,2,NULL,'2023-07-17 13:00:03','2023-07-17 13:00:03',0,0,'51.182.36.240','https://rawenergy.co.uk/oldbackup/','curl/7.54.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(29,1,NULL,'2023-07-19 12:47:38','2023-07-19 12:47:38',0,0,'49.37.53.235','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(30,1,NULL,'2023-07-20 03:57:40','2023-07-20 03:57:40',0,0,'172.86.97.140','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(31,1,NULL,'2023-07-20 18:30:35','2023-07-20 18:30:35',0,0,'146.70.55.238','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(32,1,NULL,'2023-07-21 13:40:02','2023-07-21 13:40:02',0,0,'216.185.46.81','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(33,1,NULL,'2023-07-21 18:41:57','2023-07-21 18:41:57',0,0,'89.249.73.214','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(34,1,NULL,'2023-07-21 23:04:15','2023-07-21 23:04:15',0,0,'216.185.46.81','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(35,1,NULL,'2023-07-26 09:43:49','2023-07-26 09:43:49',0,0,'107.164.77.120','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(36,1,NULL,'2023-07-28 19:31:13','2023-07-28 19:31:13',0,0,'45.134.79.147','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(37,1,NULL,'2023-07-29 19:41:09','2023-07-29 19:41:09',0,0,'78.151.55.116','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(38,1,NULL,'2023-07-30 13:04:09','2023-07-30 13:04:09',0,0,'146.70.55.222','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(39,1,NULL,'2023-07-30 23:40:25','2023-07-30 23:40:25',0,0,'176.111.174.153','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OpenWave/97.4.2043.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(40,1,NULL,'2023-07-31 00:10:04','2023-07-31 00:10:04',0,0,'134.202.34.109','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(41,1,NULL,'2023-07-31 23:14:03','2023-07-31 23:14:03',0,0,'138.199.58.40','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(42,1,NULL,'2023-08-01 06:56:17','2023-08-01 06:56:17',0,0,'62.197.150.37','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(43,1,NULL,'2023-08-03 14:56:51','2023-08-03 14:56:51',0,0,'39.42.170.82','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(44,1,NULL,'2023-08-04 01:37:21','2023-08-04 01:37:21',0,0,'49.37.52.19','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(45,1,NULL,'2023-08-04 14:21:08','2023-08-04 14:21:08',0,0,'172.241.118.71','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(46,1,NULL,'2023-08-04 14:46:06','2023-08-04 14:46:06',0,0,'23.229.36.220','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(47,1,NULL,'2023-08-04 23:11:05','2023-08-04 23:11:05',0,0,'188.126.89.67','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(48,1,NULL,'2023-08-08 19:44:55','2023-08-08 19:44:55',0,0,'45.88.97.112','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(49,1,NULL,'2023-08-09 05:20:46','2023-08-09 05:20:46',0,0,'95.214.147.14','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(50,2,NULL,'2023-08-10 10:06:53','2023-08-10 10:06:53',0,0,'81.152.246.129','https://rawenergy.co.uk/oldbackup/','curl/7.54.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(51,1,NULL,'2023-08-10 16:51:21','2023-08-10 16:51:21',0,0,'185.107.44.111','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(52,1,NULL,'2023-08-11 15:49:44','2023-08-11 15:49:44',0,0,'46.246.122.175','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(53,1,NULL,'2023-08-11 22:28:41','2023-08-11 22:28:41',0,0,'49.37.54.177','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(54,1,NULL,'2023-08-14 05:11:44','2023-08-14 05:11:44',0,0,'138.199.36.193','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(55,1,NULL,'2023-08-15 08:33:56','2023-08-15 08:33:56',0,0,'88.83.100.44','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(56,1,NULL,'2023-08-18 07:15:52','2023-08-18 07:15:52',0,0,'46.246.122.73','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(57,1,NULL,'2023-08-18 21:28:49','2023-08-18 21:28:49',0,0,'49.37.54.177','https://rawenergy.co.uk/oldbackup/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active');
/*!40000 ALTER TABLE `wpdh_gf_entry` ENABLE KEYS */;
--
-- Table structure for table `wpdh_gf_entry_meta`
--
DROP TABLE IF EXISTS `wpdh_gf_entry_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_gf_entry_meta` (
`id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
`form_id` mediumint(10) unsigned NOT NULL DEFAULT 0,
`entry_id` bigint(10) unsigned NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
`item_index` varchar(60) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meta_key` (`meta_key`(191)),
KEY `entry_id` (`entry_id`),
KEY `meta_value` (`meta_value`(191))
) ENGINE=InnoDB AUTO_INCREMENT=261 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_gf_entry_meta`
--
/*!40000 ALTER TABLE `wpdh_gf_entry_meta` DISABLE KEYS */;
INSERT INTO `wpdh_gf_entry_meta` VALUES (1,1,1,'1.3','Will',''),(2,1,1,'1.6','Amey',''),(3,1,1,'2','willamey@hotmail.co.uk',''),(4,1,1,'3','4407747307819',''),(5,1,1,'4','Test',''),(6,2,2,'1','john.doe@mail.com',''),(7,1,3,'1.3','Marisol',''),(8,1,3,'1.6','Seabolt',''),(9,1,3,'2','contact@webscraft.live',''),(10,1,3,'3','070 2609 9133',''),(11,1,3,'4','GET USA, CANADA, UNITED KINGDOM AND WORLDWIDE TARGETED WEBSITE TRAFFIC\r\n\r\nBOOST YOUR WEBSITE VISITORS FROM ANY COUNTRY\r\nYOU WANT WITH TARGETED NICHE.\r\n\r\nVISIT : https://websboost.com\r\n\r\nThanks\r\nWebs Boost',''),(12,1,4,'1.3','Rashad',''),(13,1,4,'1.6','Borchgrevink',''),(14,1,4,'2','contact@webscraft.live',''),(15,1,4,'3','037465 14 90',''),(16,1,4,'4','GET USA, CANADA, UNITED KINGDOM AND WORLDWIDE TARGETED WEBSITE TRAFFIC\r\n\r\nBOOST YOUR WEBSITE VISITORS FROM ANY COUNTRY\r\nYOU WANT WITH TARGETED NICHE.\r\n\r\nVISIT : https://buytraffics.net\r\n\r\nBuy Traffics',''),(17,1,5,'1.3','Leigh',''),(18,1,5,'1.6','Chen',''),(19,1,5,'2','contact@webscraft.live',''),(20,1,5,'3','0498 15 02 49',''),(21,1,5,'4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK JUST MESSAGE ME\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nJust Reply to this message or contact us @ WebsCraft.com\r\n\r\nOr Just Message Me in Whatsapp https://wa.me/qr/S5JFE6ID6XAWA1\r\n\r\nThanks\r\nWebs Craft',''),(22,1,6,'1.3','George',''),(23,1,6,'1.6','ch',''),(24,1,6,'2','george@ievpower.com',''),(25,1,6,'3','1000',''),(26,1,6,'4','Hello CEO,\r\nI am George, Co-Founder of iEVPower, a professional EV Charger manufacturing factory. We have partnered with leading automakers, including BYD, to provide innovative products and services.\r\nOn behalf of iEVPower, I am writing to explore potential cooperation opportunities with your company. Our team of industry experts would relish the opportunity to work with you to develop customized green energy solutions tailored to your customer’s diverse needs. Our product range includes but is not limited to:\r\n- EV Wallbox and Commercial Charging Stations compliant with OCPP standards\r\n- Portable Electric Vehicle Chargers\r\n- AC/DC All-in-One Charging Systems\r\n- Energy Storage Solutions\r\nI would be happy to send the catalogs and technical specifications if that would be helpful.\r\nI appreciate your time and consideration.\r\nGeorge\r\ngeorge@ievpower.com',''),(27,1,7,'1.3','Declan',''),(28,1,7,'1.6','Jacoby',''),(29,1,7,'2','contact@webscraft.live',''),(30,1,7,'3','04.69.07.03.09',''),(31,1,7,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nIt’s very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. So, Reviews Go a Vital role for business \r\n& it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n✔ Express Delivery\r\n✔ High Quality\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nReply to the message if you are interested\r\nOr Live chat with us below link\r\n\r\nhttps://tawk.to/chat/646e623aad80445890eeea92/1h17ive8p\r\n\r\nThanks',''),(32,1,8,'1.3','Francesco',''),(33,1,8,'1.6','Boelter',''),(34,1,8,'2','francesco.boelter@yahoo.com',''),(35,1,8,'3','967 38 011',''),(36,1,8,'4','Hi,\r\n\r\nAre you looking for a way to generate more leads and sales for your business? I have a solution for you.\r\n\r\nThis new AI-powered platform that makes it easy to create and track professional ads and social media content. With this REVOLUTIONARY System, you\'ll be able to reach a targeted audience, track your advertising performance, and optimize your campaigns for better results.\r\n\r\nDon\'t miss out on this opportunity to grow your business.\r\n\r\nI\'m excited to offer you $500 in Google Ad credit when you sign up for a 7-day free trial to TRY out this AMAZING Sytem. That\'s right, you can try out this system for FREE for a week and see firsthand how it can benefit your business.\r\n\r\nSign up for here >>> https://bit.ly/adc02 \r\n\r\nI hope this helps you on your advertising for generating more leads and sales.\r\n\r\nBest regards\r\nAtto Smith\r\n89 Rugby Street, TX\r\n98789\r\n==============\r\nClick here to Unsubscribe\r\nhttps://forms.gle/5zkMayXe7u6G3Bgx5',''),(37,1,9,'1.3','Rich',''),(38,1,9,'1.6','Strange',''),(39,1,9,'2','rich@remoratech.co.uk',''),(40,1,9,'3','07709030538',''),(41,1,9,'4','Dear Raw Energy team,\r\n\r\nWe’re Rich and Shaun, co-founders of Remora Tech.\r\n\r\nDo you have surplus or stranded energy at your generation sites? If so, we would like to buy it to power our on-site modular data centres.\r\n\r\nWe are a new business helping energy generation sites profit from their surplus energy - find out more at www.remoratech.co.uk\r\n\r\nWould you have time for a quick call to explore a partnership?\r\n\r\nBest regards,\r\n\r\nRich & Shaun\r\n\r\n--\r\nRich Strange\r\nCo-Founder\r\n07709 030 538\r\nrich@remoratech.co.uk \r\nwww.remoratech.co.uk',''),(42,1,10,'1.3','RobertAbumn',''),(43,1,10,'1.6','TimothyAbumnGM',''),(44,1,10,'2','zelatcol@gmail.com',''),(45,1,10,'3','83414221797',''),(46,1,10,'4','Γεια σου, ήθελα να μάθω την τιμή σας.',''),(47,1,11,'1.3','Bennett',''),(48,1,11,'1.6','Dupont',''),(49,1,11,'2','contact@webscraft.live',''),(50,1,11,'3','0000000000',''),(51,1,11,'4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK JUST MESSAGE ME\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nJust Reply to this message\r\n\r\nOr Live Chat with us : https://tawk.to/chat/646e623aad80445890eeea92/1h17ive8p\r\n\r\nOr Just Message Me in Whatsapp https://wa.me/qr/S5JFE6ID6XAWA1\r\n\r\nThanks',''),(52,2,12,'1','sheppardfamily@bybridge.uk',''),(53,1,13,'1.3','Will',''),(54,1,13,'1.6','Amey',''),(55,1,13,'2','willamey@hotmail.co.uk',''),(56,1,13,'3','4407747307819',''),(57,1,13,'4','Testing the Form!',''),(58,1,14,'1.3','Harriet',''),(59,1,14,'1.6','Burrell-Knipe',''),(60,1,14,'2','harriet@rawenergy.co.uk',''),(61,1,14,'3','07766517815',''),(62,1,14,'4','Test',''),(63,1,15,'1.3','RobertAbumn',''),(64,1,15,'1.6','JohnAbumnGM',''),(65,1,15,'2','zelatcol@gmail.com',''),(66,1,15,'3','83891292599',''),(67,1,15,'4','Salut, ech wollt Äre Präis wëssen.',''),(68,1,16,'1.3','Bernie',''),(69,1,16,'1.6','Heller',''),(70,1,16,'2','bernie.heller@gmail.com',''),(71,1,16,'3','580-286-8441',''),(72,1,16,'4','Get SEO services to drive organic traffic and boost \r\nyour online visibility in major search engines. \r\nIncrease your revenue with our proven \r\nstrategies and experienced team.\r\n\r\nWe provide backlinks with DA PA only manually.\r\nReport every 10 Days in Exel Sheet\r\n\r\nPlease check https://buytraffics.net/order/package.php\r\n\r\nThanks\r\nBuy Traffics',''),(73,2,17,'1','dchomewood5@icloud.com',''),(74,2,18,'1','biD0_generic_419c91f0_rawenergy.co.uk@data-backup-store.com',''),(75,1,19,'1.3','Rickie',''),(76,1,19,'1.6','Wynkoop',''),(77,1,19,'2','wynkoop.rickie@msn.com',''),(78,1,19,'3','03671 19 06 91',''),(79,1,19,'4','Hi,\r\n\r\nTake back your time—increase conversions by an average of 14x.\r\n \r\nThat’s what This AI can do for your Business or agency.\r\n \r\nThis Revolutionary AI is a highly trained Artificial Intelligence that:\r\n \r\n- Generates your creatives\r\n- Uses proven design traits\r\n- Makes your life easier\r\n \r\nPlus: New Users get $500 worth of Google Ad Credits for FREE.\r\n \r\nSign up today. Cancel anytime.\r\n \r\nTry 100% free for 7 days -> https://bit.ly/3NSreYA \r\n\r\n\r\nCheers!\r\n\r\nAdam Smith\r\n78 Road St, NYC\r\n===============\r\nClick here to Unsubscribe.\r\nhttps://forms.gle/PPk1PGMCJDU2EmX79',''),(80,1,20,'1.3','Kendrick',''),(81,1,20,'1.6','Weldon',''),(82,1,20,'2','contact@webscraft.live',''),(83,1,20,'3','(03) 5369 1573',''),(84,1,20,'4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK JUST MESSAGE ME\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nJust Reply to this message\r\n\r\nOr Live Chat with us : https://tawk.to/chat/646e623aad80445890eeea92/1h17ive8p\r\n\r\nOr Just Message Me in Whatsapp https://wa.me/qr/S5JFE6ID6XAWA1\r\n\r\nThanks',''),(85,1,21,'1.3','Elyse',''),(86,1,21,'1.6','Rigsby',''),(87,1,21,'2','contact@webscraft.live',''),(88,1,21,'3','0481 42 46 75',''),(89,1,21,'4','Buy Backlinks With High Pagerank, High Domain Authority to Boost Your SERPs Real Quick!\r\nAfter Google updates for high Google ranking, we require quality backlinks \r\nAnd we will provide high quality backlinks.\r\n\r\nWe are expert in link building and we know how to build quality link that Google loves.\r\n\r\nWhy backlinks important for you?\r\n\r\nImproves Organic Ranking and Website visitors.\r\nFaster Indexing\r\nBuild Your Brand Authority\r\nLong Term Resource Links\r\n\r\nWhat exactly are you getting?\r\n\r\nHigh DA PA Backlinks\r\nGoogle updates safe\r\n100% manual work\r\nDripfed Links\r\n\r\nOrder Here https://buytraffics.net/order/backlinkservices.php\r\n\r\nThanks\r\nBuy Traffics',''),(90,1,22,'1.3','Nick',''),(91,1,22,'1.6','Shelford',''),(92,1,22,'2','nick.shelford@js-law.co.uk',''),(93,1,22,'3','01858412033',''),(94,1,22,'4','We are the solicitor acting for the sellers of 6 Glaramara Close, Rugby, CV21 1JE. You are the owners of the solar panels that our clients have installed but from what I and the buyer\'s solicitors can see, you have not registered your Lease for the airspace with Land Registry.\r\n\r\nPlease can someone get in contact with me regarding this?',''),(95,1,23,'1.3','Alejandra',''),(96,1,23,'1.6','Quinlivan',''),(97,1,23,'2','webscrafts@gmail.com',''),(98,1,23,'3','780-338-4763',''),(99,1,23,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nIt’s very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. \r\n\r\n✔ Express Delivery\r\n✔ High Quality\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested then then you \r\ncan order here https://buytraffics.net/order/trustpilot.php\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\nThanks',''),(100,1,24,'1.3','Andy',''),(101,1,24,'1.6','Hinojosa',''),(102,1,24,'2','webscrafts@gmail.com',''),(103,1,24,'3','461 14 173',''),(104,1,24,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nIt’s very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. \r\n\r\n✔ Express Delivery\r\n✔ High Quality\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested then then you \r\ncan order here https://buytraffics.net/order/trustpilot.php\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\nThanks',''),(105,1,25,'1.3','Jessieawala',''),(106,1,25,'1.6','JessieawalaDT',''),(107,1,25,'2','yasen.krasen.13+71557@mail.ru',''),(108,1,25,'3','89158531179',''),(109,1,25,'4','Ufieuhdidhefh wjdwdjqwidjwefhwfakj oijofqwfbvsdfjfwej ijwqiofjewuhfwedjawdhewh ouhwidwjpouweiofeiouqwruio ioqwiwuifewifjfifhw jiwfjiewhfewgiewufewio rawenergy.co.uk',''),(110,1,26,'1.3','Landon',''),(111,1,26,'1.6','Michalski',''),(112,1,26,'2','contact@websboost.com',''),(113,1,26,'3','(07) 5600 7862',''),(114,1,26,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nPricing Details https://websboost.com/order/trustpiolotreviews.php\r\n\r\nIt’s very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. \r\n\r\n✔ Drip Feed Delivery\r\n✔ High Quality\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested then then you \r\ncan order here https://websboost.com/order/trustpiolotreviews.php\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\nThanks',''),(115,1,27,'1.3','Ralph',''),(116,1,27,'1.6','Sowell',''),(117,1,27,'2','contact@websboost.com',''),(118,1,27,'3','316-680-5487',''),(119,1,27,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nPricing Details https://websboost.com/order/trustpiolotreviews.php\r\n\r\nIt’s very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. \r\n\r\n✔ Drip Feed Delivery\r\n✔ High Quality\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested then then you \r\ncan order here https://websboost.com/order/trustpiolotreviews.php\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\nThanks',''),(120,2,28,'1','QmW7_generic_419c91f0_rawenergy.co.uk@data-backup-store.com',''),(121,1,29,'1.3','Hayley',''),(122,1,29,'1.6','Beals',''),(123,1,29,'2','contact@webscraft.live',''),(124,1,29,'3','(03) 6268 3668',''),(125,1,29,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nCheck https://buytraffics.net/order/trustpilot.php\r\n\r\nTrustpilot Reviews is very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. So, Reviews Go a Vital role for business \r\n& it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n\r\n✔ High Quality Trustpilot Reviews\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested you can order below\r\n\r\nhttps://buytraffics.net/order/trustpilot.php\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\n\r\nThanks\r\nBuy Traffics',''),(126,1,30,'1.3','Phyllis',''),(127,1,30,'1.6','Adamek',''),(128,1,30,'2','no-reply@gmail.com',''),(129,1,30,'3','0343 1644934',''),(130,1,30,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nCheck https://buytraffics.net/order/trustpilot.php\r\n\r\nTrustpilot Reviews is very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. So, Reviews Go a Vital role for business \r\n& it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n\r\n✔ High Quality Trustpilot Reviews\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested you can order below\r\n\r\nhttps://buytraffics.net/order/trustpilot.php\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\n\r\nThanks\r\nBuy Traffics',''),(131,1,31,'1.3','FreddieStogs',''),(132,1,31,'1.6','FreddieStogsII',''),(133,1,31,'2','kmedc@hotmail.com',''),(134,1,31,'3','86724158993',''),(135,1,31,'4','Acquire 12600 BTC Immediately http://bitcoinbooster.lottovip888.xyz/btcboost',''),(136,1,32,'1.3','Dewey',''),(137,1,32,'1.6','Louis',''),(138,1,32,'2','no-reply@gmail.com',''),(139,1,32,'3','418-783-5612',''),(140,1,32,'4','Dear Sir,\r\n\r\nWe are providing High quality SEO service which will Increases Website Traffic \r\nand Keyword Ranking of your website.\r\n\r\nIf you are interested Please contact me in the email id below.\r\n\r\nwebsboostservices@gmail.com\r\n\r\nOur package pricing details :\r\n\r\n1. 3 keyword SEO With Approx 500 Links $125 ( 1 month)\r\n2. 5 keyword SEO With Approx 1000 Links $250 ( 1 month)\r\n3. 10 keyword SEO With Approx 2500 Links $500 (1 month)\r\n4. 15 keyword SEO With Approx 5000 Links $750 (1 month + 1 month extra free )\r\n\r\nHigh Quality Ranking SEO Service focuses on 6 different methods:\r\n\r\n1. Competitive keyword Research\r\n2. On-page Analysis and recommendations\r\n3. Technical Analysis and recommendations\r\n4. Off-Page SEO Backlinks\r\n5. Increase Traffic\r\n6. Improve Website Ranking\r\n\r\nMain benefits:\r\n\r\n• 100% White Hat Service\r\n• Friendly for all search engines.\r\n• High PR link (High PR root domain).\r\n• Google secure backlink.\r\n• Manual submission.\r\n• Fast delivery\r\n• Quick response\r\n• Complete Website Analysis Report\r\n• Full report with username, password (Excel format) along with all job information.\r\n\r\nComplete Service Details :-\r\n\r\n• Profile Creation\r\n• Mixed Submission\r\n• Forum Submission\r\n• URL Profile Creation\r\n• Bookmarking\r\n• Blog Commenting\r\n• Feed Submission\r\n• Article Submission\r\n• Blog Submission\r\n• Classified Submission\r\n• Image Submission\r\n• PDF Submission\r\n• And many more\r\n\r\nContact me here only websboostservices@gmail.com\r\n\r\nThanks\r\nJohn',''),(141,1,33,'1.3','Danielexeri',''),(142,1,33,'1.6','DanielexeriMH',''),(143,1,33,'2','golfinhoazul@gmx.ch',''),(144,1,33,'3','86178859475',''),(145,1,33,'4','FOR SALE BITCOIN WALLET WITH 12600 BTC IN THE ACCOUNT - 3 DAYS LEFT http://12600BTCswift.plaqadiip.com/BTC12600dash',''),(146,1,34,'1.3','Arthur',''),(147,1,34,'1.6','Montoya',''),(148,1,34,'2','digitalwebsiteonline@gmail.com',''),(149,1,34,'3','071 635 77 98',''),(150,1,34,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nIf you are interested reply me or contact here digitalwebsiteonline@gmail.com\r\n\r\nTrustpilot Reviews is very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. So, Reviews Go a Vital role for business \r\n& it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n\r\n✔ High Quality Trustpilot Reviews\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested you can contact me in the below email id\r\n\r\n\r\ndigitalwebsiteonline@gmail.com\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\n\r\nThanks\r\nJohn',''),(151,1,35,'1.3','Ron Gadsden',''),(152,1,35,'1.6','Gadsden',''),(153,1,35,'2','loopline@ronsays.com',''),(154,1,35,'3','25-78-00-02',''),(155,1,35,'4','Dear Business Leader,\r\n\r\nI hope this email finds you well. I am Ron Gadsden, and I\'m reaching out to you today to discuss a critical aspect of modern business security - the implementation of a Virtual Private Network (VPN).\r\n\r\nIn today\'s fast-paced digital landscape, the importance of safeguarding sensitive business data cannot be overstated. With cyber threats on the rise and hackers constantly seeking vulnerabilities, it\'s imperative for businesses to adopt proactive measures to protect their valuable information.\r\n\r\nAllow me to shed light on the compelling security benefits that a VPN can bring to your organization:\r\n\r\nEnhanced Data Encryption: A VPN employs robust encryption protocols that shield your data from prying eyes during transmission. Whether it\'s confidential client information or proprietary business strategies, a VPN ensures that your data remains secure at all times.\r\n\r\nSecure Remote Access: In an age where remote work is becoming increasingly prevalent, ensuring a secure connection for employees accessing sensitive company resources is vital. VPNs create a private tunnel between remote devices and your network, mitigating the risk of unauthorized access.\r\n\r\nProtection on Public Networks: Traveling or using public Wi-Fi networks can leave your business vulnerable to potential cyber-attacks. A VPN safeguards your data by encrypting traffic and shielding it from potential threats lurking on unsecured networks.\r\n\r\nGeo-Restriction Bypass: If your business operates globally, you may encounter geographic restrictions while accessing certain resources. A VPN allows you to navigate these barriers, empowering your team to access essential tools and information from anywhere in the world.\r\n\r\nAnonymous Browsing: A VPN masks your IP address, adding an extra layer of anonymity to your online activities. This prevents advertisers, hackers, and even your internet service provider from tracking your actions, ensuring a more private browsing experience.\r\n\r\nSurfshark, a VPN provider, takes pride in providing top-notch VPN solutions that cater to the unique security needs of businesses like yours. Their cutting-edge technology and user-friendly interface make it seamless for your team to integrate VPN protection into their daily workflow.\r\n\r\nThank you for considering the importance of VPN security. I look forward to the opportunity to assist you in safeguarding what matters most to your business. If you like what you have read so far for more information go to https://bit.ly/vpn0071\r\nPlease be aware that I may receive a small commission if you buy VPN services. It does not affect your price.\r\n\r\n\r\nBest regards,\r\n\r\n\r\nRon Gadsden\r\n***Opt out of future messages by replying to the messages and saying opt out. rawenergy.co.uk\r\n\r\n7031 Sand Cherry Way \r\nClinton, MD 20735',''),(156,1,36,'1.3','Williamcer',''),(157,1,36,'1.6','WilliamcerJG',''),(158,1,36,'2','boholcarentalo@yahoo.com',''),(159,1,36,'3','86821682893',''),(160,1,36,'4','TAKE YOUR BUSINESS TO THE NEXT LEVEL WITH OUR ELITE SERVICE http://elite-store-643.superstrate.xyz/page-6',''),(161,1,37,'1.3','Nigel',''),(162,1,37,'1.6','Tait',''),(163,1,37,'2','nigelgtait@gmail.com',''),(164,1,37,'4','Hello, I’m interested in solar panels and was given your details. Unfortunalely I don’t think my roof is really suitable. Dormer window, velux windows, etc. however I have a wooden pergola along the back of the house. Would it be possible to put panels on there?\r\nMany thanks\r\nNigel',''),(165,1,38,'1.3','Bradleysuema',''),(166,1,38,'1.6','BradleysuemaKP',''),(167,1,38,'2','jean-pierre.castellant@wanadoo.fr',''),(168,1,38,'3','85636979663',''),(169,1,38,'4','Attract over 23000 customers to your business in days http://service-229.vivercomtranquilidade.online/personal-invite',''),(170,1,39,'1.3','RobertAbumn',''),(171,1,39,'1.6','DennisAbumnGM',''),(172,1,39,'2','alfredegov@gmail.com',''),(173,1,39,'3','83466784553',''),(174,1,39,'4','Hi, roeddwn i eisiau gwybod eich pris.',''),(175,1,40,'1.3','Tisha',''),(176,1,40,'1.6','Kuykendall',''),(177,1,40,'2','digitalwebsiteonline@gmail.com',''),(178,1,40,'3','(03) 5367 8042',''),(179,1,40,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nIf you are interested reply me or contact here digitalwebsiteonline@gmail.com\r\n\r\nTrustpilot Reviews is very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. So, Reviews Go a Vital role for business \r\n& it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n\r\n✔ High Quality Trustpilot Reviews\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested you can contact me in the below email id\r\n\r\n\r\ndigitalwebsiteonline@gmail.com\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\n\r\nThanks\r\nJohn',''),(180,1,41,'1.3','WilliamPrurl',''),(181,1,41,'1.6','WilliamPrurlLT',''),(182,1,41,'2','jeremy.riley@sympatico.ca',''),(183,1,41,'3','81997627215',''),(184,1,41,'4','Exclusive SEO Backlink Pyramid for Boost Your SERP Ranking http://link-pyramid-544.firstonlineoffer.com/invite',''),(185,1,42,'1.3','ClaudeSeP',''),(186,1,42,'1.6','ClaudeSePQQ',''),(187,1,42,'2','LOUIS@HALIVING.COM.AU',''),(188,1,42,'3','88279823417',''),(189,1,42,'4','INCREASE THE NUMBER OF YOUR CUSTOMERS BY 10,000 TIMES WITH OUR SERVICE http://elite-service-497.vivercomtranquilidade.online/personal-invite',''),(190,1,43,'1.3','Una',''),(191,1,43,'1.6','Vela',''),(192,1,43,'2','letscreatrbacklinks@gmail.com',''),(193,1,43,'3','091 624 18 91',''),(194,1,43,'4','Hey,\r\n\r\nI hope this email finds you well.\r\n\r\nI am the outreach manager at eduguestpost.\r\n\r\nI understand the importance of acquiring high-quality backlinks and the effort it takes to obtain them.\r\n\r\nI am aware of your concerns about the challenges of obtaining backlinks for a well-ranked website.\r\n\r\nThat\'s why I am reaching out to introduce you to universities guest post service. Universities like columbia.edu, umass.edu , depaul.edu and many more with a strong ranking that could greatly benefit you.\r\n\r\nWe believe that placing your backlink on University websites would not only improve your website\'s ranking but also connect you with a large audience.\r\n\r\nDon\'t hesitate to seize this opportunity and expand your reach to a wider audience.\r\n\r\nAt digimarketinglads, our primary goal is to ensure customer satisfaction through our work.\r\n\r\nWe provide top-notch backlink services at competitive prices. \r\n\r\nFor further details or any queries, please feel free to contact us directly via email letscreatrbacklinks@gmail.com . \r\nSkype to Contact:- live:.cid.6146c29ca0d4ff2e\r\nHere you can check available sites list. Please enter your email in the list so that we can directly contact you using the list\r\nhttps://docs.google.com/spreadsheets/d/1rWNzRupag9lWbJDB8C_0xZIcnp2b1XDY27m3xT3ZRy0/edit?usp=sharing\r\nIf you want complete list of available university sites or other guest post backlink sites that we offer you can let me know through email and I will send it to you \r\n\r\nWe eagerly await your positive response.\r\n\r\nBest regards,\r\n\r\nDigimarketinglads',''),(195,1,44,'1.3','Taren',''),(196,1,44,'1.6','Hixson',''),(197,1,44,'2','digitalwebsiteonline@gmail.com',''),(198,1,44,'3','(11) 3484-5001',''),(199,1,44,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nIf you are interested reply me or contact here digitalwebsiteonline@gmail.com\r\n\r\nTrustpilot Reviews is very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. So, Reviews Go a Vital role for business \r\n& it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n\r\n✔ High Quality Trustpilot Reviews\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested reply me or contact here digitalwebsiteonline@gmail.com\r\n\r\ndigitalwebsiteonline@gmail.com\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\n\r\nThanks\r\nJohn',''),(200,1,45,'1.3','Cinda',''),(201,1,45,'1.6','Bixby',''),(202,1,45,'2','cinda.bixby@yahoo.com',''),(203,1,45,'3','05362 53 98 60',''),(204,1,45,'4','Hi, we\'ve noticed rawenergy.co.uk is getting most of its web traffic from social media\r\nWith AI Reach technology, you can automate social media marketing, and in your case, triple your growth\r\n\r\nHere\'s a short explainer video: http://aitoolsuite.com\r\n\r\n\r\n\r\nRegards',''),(205,1,46,'1.3','Cindy',''),(206,1,46,'1.6','Arellano',''),(207,1,46,'2','cindy.arellano@googlemail.com',''),(208,1,46,'3','479 7317',''),(209,1,46,'4','Hey there, \r\n\r\nDo you use Google adwords for your business marketing campaigns?\r\n\r\nToday we are going to be creating a Performance Max Campaign Solutions 8 style!!\r\nIf you have a business that you need to generate sales or leads, this video will help you create killer performance max campaigns step by step. It is the Ultimate Guide!\r\n\r\n➡️ A performance Max Campaign will automatically test and optimize your ads for you, and even helps you out in finding your exact audience.\r\n\r\nI will show you the exact steps to use Google Ads to keep track of your leads (it only takes a few minutes to set up). Then I will go through the rest of the process for setting up the campaign– everything from the campaign name to the lead parameters.\r\n\r\n➡️ Watch the video to learn everything you need to know about creating a Performance Max Campaign that generates the leads you need.\r\nClick here >>> https://bit.ly/3OBeFBk\r\n\r\nCheers\r\n\r\nPerry M\r\n78 Road St, NYC\r\n===============\r\nClick here to Unsubscribe.\r\nhttps://forms.gle/XqUA6zg28S3mCSw39',''),(210,1,47,'1.3','GregoryKipsy',''),(211,1,47,'1.6','GregoryKipsyYL',''),(212,1,47,'2','rderen@bigpond.net.au',''),(213,1,47,'3','87389375981',''),(214,1,47,'4','EARN ON INVESTMENTS FROM $20,000 PER WEEK http://passive-income-20000usd-849.firstonlineoffer.com/personal',''),(215,1,48,'1.3','Martin Jose Barreiro',''),(216,1,48,'1.6','Martin Jose Barreiro',''),(217,1,48,'2','barreiromartin36@gmail.com',''),(218,1,48,'3','88758315484',''),(219,1,48,'4','Good evening from Madrid \r\nMy name is Br.Martin Jose Barreiro, I am a Lawyer and I pratices here in Madrid Spain. I have previously sent you an email regarding a transaction of US$13.5 Million left behind by my late client before his tragic death. \r\nHowever I am reaching out to you once again because after going through your profile, I strongly believe that you will be in a better position to execute this business transaction with me. \r\nI suggest after the transaction, we donate 5% of the money to charity organizations while the remaining 95% is shared equally between us. \r\nIf you are interested to proceed with me, kindly respond to me via this email legalmj@barieroabogados.com for more detail. \r\nThis transaction is 100% risk free and I look forward to your response. \r\nYours sincerely \r\nMartin Jose Barreiro,, \r\nLawyer \r\nPhone: +34 661 220 756 \r\nE-mail: legalmj@barieroabogados.com \r\nWeb: http://www.barreiroabogado.com/',''),(220,1,49,'1.3','Laura',''),(221,1,49,'1.6','Laura',''),(222,1,49,'2','laura.seo@agenciasubido.com',''),(223,1,49,'3','655390359',''),(224,1,49,'4','Hello! My name is Laura and I am very happy to greet you.\r\n\r\nI wanted to write to you because I thought it would be interesting to discuss the possibility of your business appearing every month in digital newspapers as news to position it at the top of the internet, i.e. with real articles in the newspaper that are not marked as advertising and are not deleted.\r\n\r\nThe news is published by more than sixty newspapers of great authority to improve the positioning of your website and reputation.\r\n\r\n\r\n\r\nCould you provide me with a phone number to offer you up to two months free of charge?\r\n\r\nThank you',''),(225,2,50,'1','qUwW_generic_419c91f0_rawenergy.co.uk@data-backup-store.com',''),(226,1,51,'1.3','Apali',''),(227,1,51,'1.6','ApaliGZ',''),(228,1,51,'2','u3qjgv9t@gmail.com',''),(229,1,51,'3','87741742999',''),(230,1,51,'4','Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/28uyy66m',''),(231,1,52,'1.3','JefferyAsype',''),(232,1,52,'1.6','JefferyAsypeQG',''),(233,1,52,'2','michel@michelboisvert.ca',''),(234,1,52,'3','85488387143',''),(235,1,52,'4','Elite guest posting service for your website rawenergy.co.uk http://vip-guest-posting-534.trsyxg.com/invite',''),(236,1,53,'1.3','Faustino',''),(237,1,53,'1.6','Hanigan',''),(238,1,53,'2','digitalwebsiteonline@gmail.com',''),(239,1,53,'3','0388 0717755',''),(240,1,53,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nIf you are interested reply me or contact here digitalwebsiteonline@gmail.com\r\n\r\nTrustpilot Reviews is very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. So, Reviews Go a Vital role for business \r\n& it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n\r\n✔ High Quality Trustpilot Reviews\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested reply me or contact here\r\n\r\ndigitalwebsiteonline@gmail.com\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\n\r\nThanks\r\nJohn',''),(241,1,54,'1.3','Josephenurb',''),(242,1,54,'1.6','JosephenurbQY',''),(243,1,54,'2','scenereleases27@gmail.com',''),(244,1,54,'3','86894913186',''),(245,1,54,'4','Hello, \r\n \r\n0DAY music scene releases, sorted style and date https://0daymusic.org/premium.php \r\nFull access to 314 TB music, files are available every time. \r\n \r\nBest Regards, \r\n0day team',''),(246,1,55,'1.3','Ekam',''),(247,1,55,'1.6','Sandhu',''),(248,1,55,'2','ekam@wildhydrogen.com',''),(249,1,55,'3','07492730970',''),(250,1,55,'4','Dear Raw Energy, \r\n\r\nI am contacting you on behalf of Wild Hydrogen, a bioenergy company based in Gloucester looking to create carbon negative hydrogen. Due to the flexible nature of our technology we believe we could process a wide range of feedstock, including waste. We are currently running experiments on our third prototype and building our fourth. We are very excited to try different types of waste in both! I am hoping to acquire a small amount of digestate (approximately 0.5 - 1 kg) to put through our prototype at some time next month. Please let me know if this is something you would like to assist with. Thank you. \r\n\r\nBest regards, \r\nEkam',''),(251,1,56,'1.3','JefferyAsype',''),(252,1,56,'1.6','JefferyAsypeQG',''),(253,1,56,'2','trwilson@ameritech.net',''),(254,1,56,'3','82225721549',''),(255,1,56,'4','Earn on investments from $20,000 per week http://trade-robot-9152.recknagel.xyz/product',''),(256,1,57,'1.3','Dee',''),(257,1,57,'1.6','Coy',''),(258,1,57,'2','digitalwebsiteonline@gmail.com',''),(259,1,57,'3','04.96.83.43.06',''),(260,1,57,'4','Get Trustpiolot Reviews for your business reputation.\r\n\r\nIt’s very important for your business.\r\nBecause customers first time see your reviews and make a decision\r\nabout your business is good or bad. So, Reviews Go a Vital role for business \r\n& it can often be the crucial tiebreaker between equidistant businesses.\r\n\r\n\r\n✔ Express Delivery\r\n✔ High Quality\r\n✔ No need any admin access or password\r\n✔ 24/7 Customer Support\r\n✔ Unlimited split available\r\n\r\nIf you are interested then order here https://www.websboost.com/order/trustpiolotreviews.php\r\n\r\nor contact us at webscrafts@gmail.com\r\n\r\nWe also provide website visitors, seo service,\r\nspeed optimization, website design etc.\r\n\r\n\r\nThanks','');
/*!40000 ALTER TABLE `wpdh_gf_entry_meta` ENABLE KEYS */;
--
-- Table structure for table `wpdh_gf_entry_notes`
--
DROP TABLE IF EXISTS `wpdh_gf_entry_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_gf_entry_notes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`entry_id` int(10) unsigned NOT NULL,
`user_name` varchar(250) DEFAULT NULL,
`user_id` bigint(10) DEFAULT NULL,
`date_created` datetime NOT NULL,
`value` longtext DEFAULT NULL,
`note_type` varchar(50) DEFAULT NULL,
`sub_type` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entry_id` (`entry_id`),
KEY `entry_user_key` (`entry_id`,`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_gf_entry_notes`
--
/*!40000 ALTER TABLE `wpdh_gf_entry_notes` DISABLE KEYS */;
INSERT INTO `wpdh_gf_entry_notes` VALUES (1,1,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-07 18:05:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(2,2,'Admin Notification (ID: 646bf54068481)',0,'2023-06-08 11:24:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(3,3,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-10 22:03:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(4,4,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-11 05:14:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(5,5,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-12 22:25:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(6,6,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-13 07:27:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(7,7,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-14 19:06:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(8,8,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-16 03:33:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(9,9,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-16 13:47:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(10,10,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-17 10:00:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(11,11,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-19 17:26:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(12,12,'Admin Notification (ID: 646bf54068481)',0,'2023-06-19 22:56:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(13,13,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-20 06:43:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(14,14,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-21 13:46:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(15,15,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-22 03:19:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(16,16,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-22 05:52:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(17,17,'Admin Notification (ID: 646bf54068481)',0,'2023-06-24 13:35:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(18,18,'Admin Notification (ID: 646bf54068481)',0,'2023-06-26 17:55:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(19,19,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-29 15:54:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(20,20,'Admin Notification (ID: 646bf0192250e)',0,'2023-06-30 11:21:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(21,21,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-03 09:00:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(22,22,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-05 08:55:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(23,23,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-07 22:40:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(24,24,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-10 12:22:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(25,25,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-10 22:22:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(26,26,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-12 00:32:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(27,27,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-14 04:04:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(28,28,'Admin Notification (ID: 646bf54068481)',0,'2023-07-17 13:00:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(29,29,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-19 12:47:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(30,30,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-20 03:57:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(31,31,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-20 18:30:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(32,32,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-21 13:40:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(33,33,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-21 18:41:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(34,34,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-21 23:04:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(35,35,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-26 09:43:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(36,36,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-28 19:31:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(37,37,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-29 19:41:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(38,38,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-30 13:04:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(39,39,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-30 23:40:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(40,40,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-31 00:10:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(41,41,'Admin Notification (ID: 646bf0192250e)',0,'2023-07-31 23:14:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(42,42,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-01 06:56:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(43,43,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-03 14:56:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(44,44,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-04 01:37:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(45,45,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-04 14:21:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(46,46,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-04 14:46:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(47,47,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-04 23:11:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(48,48,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-08 19:44:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(49,49,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-09 05:20:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(50,50,'Admin Notification (ID: 646bf54068481)',0,'2023-08-10 10:06:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(51,51,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-10 16:51:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(52,52,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-11 15:49:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(53,53,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-11 22:28:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(54,54,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-14 05:11:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(55,55,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-15 08:33:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(56,56,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-18 07:15:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(57,57,'Admin Notification (ID: 646bf0192250e)',0,'2023-08-18 21:28:49','WordPress successfully passed the notification email to the sending server.','notification','success');
/*!40000 ALTER TABLE `wpdh_gf_entry_notes` ENABLE KEYS */;
--
-- Table structure for table `wpdh_gf_form`
--
DROP TABLE IF EXISTS `wpdh_gf_form`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_gf_form` (
`id` mediumint(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(150) NOT NULL,
`date_created` datetime NOT NULL,
`date_updated` datetime DEFAULT NULL,
`is_active` tinyint(10) NOT NULL DEFAULT 1,
`is_trash` tinyint(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_gf_form`
--
/*!40000 ALTER TABLE `wpdh_gf_form` DISABLE KEYS */;
INSERT INTO `wpdh_gf_form` VALUES (1,'Contact','2023-05-22 22:43:37',NULL,1,0),(2,'Stay up to date','2023-05-22 23:05:36',NULL,1,0);
/*!40000 ALTER TABLE `wpdh_gf_form` ENABLE KEYS */;
--
-- Table structure for table `wpdh_gf_form_meta`
--
DROP TABLE IF EXISTS `wpdh_gf_form_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_gf_form_meta` (
`form_id` mediumint(10) unsigned NOT NULL,
`display_meta` longtext DEFAULT NULL,
`entries_grid_meta` longtext DEFAULT NULL,
`confirmations` longtext DEFAULT NULL,
`notifications` longtext DEFAULT NULL,
PRIMARY KEY (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_gf_form_meta`
--
/*!40000 ALTER TABLE `wpdh_gf_form_meta` DISABLE KEYS */;
INSERT INTO `wpdh_gf_form_meta` VALUES (1,'{\"title\":\"Contact\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Send\",\"imageUrl\":\"\",\"conditionalLogic\":null},\"fields\":[{\"type\":\"name\",\"id\":1,\"formId\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-prefix\",\"choices\":[{\"text\":\"Dr\",\"value\":\"Dr\"},{\"text\":\"Miss\",\"value\":\"Miss\"},{\"text\":\"Mr\",\"value\":\"Mr\"},{\"text\":\"Mrs\",\"value\":\"Mrs\"},{\"text\":\"Ms\",\"value\":\"Ms\"},{\"text\":\"Prof.\",\"value\":\"Prof.\"},{\"text\":\"Rev.\",\"value\":\"Rev.\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\",\"autocompleteAttribute\":\"given-name\",\"customLabel\":\"First name\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"autocompleteAttribute\":\"additional-name\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\",\"autocompleteAttribute\":\"family-name\",\"customLabel\":\"Last name\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-suffix\",\"isHidden\":true}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"hidden_label\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"above\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"25c90bdc\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"checkboxLabel\":\"\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":2,\"formId\":1,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"autocompleteAttribute\":\"email\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"emailConfirmEnabled\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"46fa2a52\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":3,\"formId\":1,\"label\":\"Mobile phone number\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"international\",\"autocompleteAttribute\":\"tel\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"cc930318\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"checkboxLabel\":\"\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":4,\"formId\":1,\"label\":\"Message\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"small\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"form_id\":\"\",\"useRichTextEditor\":false,\"enableEnhancedUI\":0,\"layoutGroupId\":\"70ab00fe\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"}],\"version\":\"2.5.8.1\",\"id\":1,\"markupVersion\":2,\"nextFieldId\":5,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"requiredIndicator\":\"text\",\"customRequiredIndicator\":\"(Required)\",\"cssClass\":\"\",\"buttonType\":\"text\",\"buttonText\":\"Send\",\"buttonImageURL\":\"\",\"form_button_conditional_logic_object\":\"\",\"form_button_conditional_logic\":\"0\",\"saveButtonText\":\"Save and Continue Later\",\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleEnd\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"validationSummary\":false,\"saveEnabled\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\"}',NULL,'{\"646bf0192261c\":{\"id\":\"646bf0192261c\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"646bf0192250e\":{\"id\":\"646bf0192250e\",\"isActive\":true,\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}'),(2,'{\"title\":\"Stay up to date\",\"description\":\"Stay up to date with our latest projects and see how we can help you\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"conditionalLogic\":null},\"fields\":[{\"type\":\"email\",\"id\":1,\"formId\":2,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"autocompleteAttribute\":\"email\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"hidden_label\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":8,\"emailConfirmEnabled\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"25916ea8\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"checkboxLabel\":\"\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"html\",\"id\":2,\"formId\":2,\"label\":\"HTML Block\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"content\":\"<div>\\n<button onclick=\\\"document.getElementById(\'gform_submit_button_2\').click();\\\">\\nSubmit\\n<\\/button>\\n<\\/div>\\n \\n<style type=\\\"text\\/css\\\">\\n#gform_wrapper_2 .gform_footer { visibility: hidden; position: absolute; left: -100vw; }\\n<\\/style>\",\"disableMargins\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":4,\"enableEnhancedUI\":0,\"layoutGroupId\":\"25916ea8\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\"}],\"version\":\"2.5.8.1\",\"id\":2,\"markupVersion\":2,\"nextFieldId\":3,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"requiredIndicator\":\"text\",\"customRequiredIndicator\":\"(Required)\",\"cssClass\":\"\",\"buttonType\":\"text\",\"buttonText\":\"Submit\",\"buttonImageURL\":\"\",\"form_button_conditional_logic_object\":\"\",\"form_button_conditional_logic\":\"0\",\"saveButtonText\":\"Save and Continue Later\",\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleEnd\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"validationSummary\":false,\"saveEnabled\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\"}',NULL,'{\"646bf540685bc\":{\"id\":\"646bf540685bc\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}','{\"646bf54068481\":{\"id\":\"646bf54068481\",\"isActive\":true,\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}');
/*!40000 ALTER TABLE `wpdh_gf_form_meta` ENABLE KEYS */;
--
-- Table structure for table `wpdh_gf_form_revisions`
--
DROP TABLE IF EXISTS `wpdh_gf_form_revisions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_gf_form_revisions` (
`id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
`form_id` mediumint(10) unsigned NOT NULL,
`display_meta` longtext DEFAULT NULL,
`date_created` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `date_created` (`date_created`),
KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_gf_form_revisions`
--
/*!40000 ALTER TABLE `wpdh_gf_form_revisions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpdh_gf_form_revisions` ENABLE KEYS */;
--
-- Table structure for table `wpdh_gf_form_view`
--
DROP TABLE IF EXISTS `wpdh_gf_form_view`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_gf_form_view` (
`id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
`form_id` mediumint(10) unsigned NOT NULL,
`date_created` datetime NOT NULL,
`ip` char(15) DEFAULT NULL,
`count` mediumint(10) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
KEY `date_created` (`date_created`),
KEY `form_id` (`form_id`)
) ENGINE=InnoDB AUTO_INCREMENT=148 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_gf_form_view`
--
/*!40000 ALTER TABLE `wpdh_gf_form_view` DISABLE KEYS */;
INSERT INTO `wpdh_gf_form_view` VALUES (1,2,'2023-05-23 11:31:18','',1),(2,2,'2023-05-30 21:42:04','',47),(3,1,'2023-05-30 22:35:46','',4),(4,2,'2023-06-01 06:56:22','',12),(5,2,'2023-06-04 19:39:51','',17),(6,2,'2023-06-06 13:19:03','',54),(7,1,'2023-06-06 13:29:21','',3),(8,2,'2023-06-07 13:48:50','',377),(9,1,'2023-06-07 15:37:37','',12),(10,2,'2023-06-08 13:49:47','',385),(11,1,'2023-06-08 15:51:39','',7),(12,2,'2023-06-09 13:52:02','',167),(13,1,'2023-06-10 08:03:05','',6),(14,2,'2023-06-10 13:53:05','',256),(15,2,'2023-06-10 13:53:05','',1),(16,2,'2023-06-11 14:24:38','',395),(17,1,'2023-06-11 16:37:53','',8),(18,2,'2023-06-12 14:47:38','',252),(19,1,'2023-06-12 22:25:15','',8),(20,2,'2023-06-13 15:21:52','',208),(21,1,'2023-06-13 22:33:52','',6),(22,2,'2023-06-14 15:22:06','',300),(23,1,'2023-06-15 07:40:24','',9),(24,2,'2023-06-15 15:23:05','',197),(25,1,'2023-06-16 09:09:43','',12),(26,2,'2023-06-16 15:46:24','',190),(27,1,'2023-06-17 10:00:30','',4),(28,2,'2023-06-17 15:47:34','',257),(29,1,'2023-06-18 10:41:47','',6),(30,2,'2023-06-18 16:06:45','',256),(31,1,'2023-06-19 11:24:26','',9),(32,2,'2023-06-19 16:13:12','',490),(33,1,'2023-06-20 11:47:54','',11),(34,2,'2023-06-20 16:19:55','',351),(35,1,'2023-06-21 12:52:49','',10),(36,2,'2023-06-21 16:35:25','',229),(37,2,'2023-06-22 16:41:47','',211),(38,1,'2023-06-23 10:09:37','',6),(39,2,'2023-06-23 16:54:05','',219),(40,2,'2023-06-24 17:10:05','',176),(41,1,'2023-06-24 21:05:29','',4),(42,2,'2023-06-25 17:15:10','',364),(43,1,'2023-06-25 21:19:19','',5),(44,2,'2023-06-26 17:35:34','',409),(45,1,'2023-06-26 23:31:29','',8),(46,2,'2023-06-27 17:42:05','',352),(47,1,'2023-06-28 00:00:44','',5),(48,2,'2023-06-28 17:45:05','',234),(49,1,'2023-06-29 05:15:48','',5),(50,2,'2023-06-29 17:58:47','',329),(51,1,'2023-06-30 07:50:55','',9),(52,2,'2023-06-30 18:29:57','',160),(53,2,'2023-07-01 18:42:35','',191),(54,1,'2023-07-01 21:09:57','',5),(55,2,'2023-07-02 18:57:32','',543),(56,1,'2023-07-03 01:50:26','',7),(57,2,'2023-07-03 19:13:36','',373),(58,1,'2023-07-04 07:40:03','',11),(59,2,'2023-07-04 19:18:51','',288),(60,1,'2023-07-05 07:45:51','',11),(61,2,'2023-07-05 19:46:40','',309),(62,1,'2023-07-06 10:36:13','',5),(63,2,'2023-07-06 19:58:36','',184),(64,2,'2023-07-07 20:35:11','',247),(65,1,'2023-07-07 22:40:43','',8),(66,2,'2023-07-08 21:17:39','',240),(67,1,'2023-07-09 09:39:48','',5),(68,2,'2023-07-09 21:28:28','',409),(69,1,'2023-07-10 09:50:55','',9),(70,2,'2023-07-10 21:49:02','',210),(71,1,'2023-07-11 13:38:06','',5),(72,2,'2023-07-11 21:49:44','',241),(73,1,'2023-07-12 14:25:28','',8),(74,2,'2023-07-12 22:46:47','',306),(75,2,'2023-07-13 23:01:25','',334),(76,1,'2023-07-14 04:04:30','',9),(77,2,'2023-07-14 23:07:18','',323),(78,1,'2023-07-15 12:57:26','',10),(79,2,'2023-07-15 23:14:28','',270),(80,1,'2023-07-16 22:41:41','',6),(81,2,'2023-07-16 23:18:08','',357),(82,2,'2023-07-17 23:20:23','',737),(83,1,'2023-07-18 02:14:29','',7),(84,2,'2023-07-18 23:25:47','',698),(85,1,'2023-07-19 09:14:39','',8),(86,2,'2023-07-19 23:47:03','',446),(87,1,'2023-07-20 09:58:06','',5),(88,2,'2023-07-20 23:56:47','',273),(89,1,'2023-07-21 10:51:29','',8),(90,2,'2023-07-22 00:29:12','',268),(91,1,'2023-07-22 14:18:38','',3),(92,2,'2023-07-23 00:30:22','',205),(93,1,'2023-07-23 16:03:59','',6),(94,2,'2023-07-24 00:39:18','',278),(95,1,'2023-07-24 16:42:40','',6),(96,2,'2023-07-25 01:37:56','',415),(97,1,'2023-07-25 20:57:33','',11),(98,2,'2023-07-26 02:05:09','',299),(99,2,'2023-07-27 02:07:22','',187),(100,1,'2023-07-27 09:06:53','',8),(101,2,'2023-07-28 02:10:30','',349),(102,1,'2023-07-28 10:45:16','',10),(103,2,'2023-07-29 02:22:29','',246),(104,1,'2023-07-29 15:55:30','',4),(105,2,'2023-07-30 02:46:47','',176),(106,1,'2023-07-30 17:52:15','',7),(107,2,'2023-07-31 02:51:54','',214),(108,1,'2023-07-31 23:14:01','',7),(109,2,'2023-08-01 02:58:01','',248),(110,1,'2023-08-01 23:41:10','',9),(111,2,'2023-08-02 03:33:11','',291),(112,2,'2023-08-03 03:41:04','',244),(113,1,'2023-08-03 06:26:58','',12),(114,2,'2023-08-04 03:49:55','',182),(115,1,'2023-08-04 08:18:28','',13),(116,2,'2023-08-05 03:51:02','',419),(117,1,'2023-08-05 16:23:22','',9),(118,2,'2023-08-06 03:51:19','',237),(119,1,'2023-08-07 00:21:23','',6),(120,2,'2023-08-07 03:54:43','',488),(121,2,'2023-08-08 04:23:03','',386),(122,1,'2023-08-08 09:36:43','',8),(123,2,'2023-08-09 04:51:21','',633),(124,1,'2023-08-09 10:12:25','',3),(125,2,'2023-08-10 05:16:49','',394),(126,1,'2023-08-10 10:17:32','',8),(127,2,'2023-08-11 05:45:07','',413),(128,1,'2023-08-11 12:04:54','',6),(129,2,'2023-08-12 05:52:43','',294),(130,1,'2023-08-12 16:26:17','',15),(131,2,'2023-08-13 05:54:05','',483),(132,1,'2023-08-14 05:11:43','',5),(133,2,'2023-08-14 06:26:46','',490),(134,2,'2023-08-15 06:43:55','',747),(135,1,'2023-08-15 08:20:12','',6),(136,2,'2023-08-16 06:51:40','',334),(137,1,'2023-08-16 09:55:05','',5),(138,2,'2023-08-17 07:21:35','',344),(139,1,'2023-08-17 10:11:51','',12),(140,2,'2023-08-18 07:36:47','',253),(141,1,'2023-08-18 10:38:21','',5),(142,2,'2023-08-19 07:54:01','',353),(143,1,'2023-08-19 15:27:05','',7),(144,2,'2023-08-20 07:56:34','',323),(145,1,'2023-08-20 16:23:56','',13),(146,2,'2023-08-21 08:05:50','',172),(147,2,'2023-11-09 12:34:34','',3);
/*!40000 ALTER TABLE `wpdh_gf_form_view` ENABLE KEYS */;
--
-- Table structure for table `wpdh_links`
--
DROP TABLE IF EXISTS `wpdh_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_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 `wpdh_links`
--
/*!40000 ALTER TABLE `wpdh_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpdh_links` ENABLE KEYS */;
--
-- Table structure for table `wpdh_options`
--
DROP TABLE IF EXISTS `wpdh_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_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=6225 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_options`
--
/*!40000 ALTER TABLE `wpdh_options` DISABLE KEYS */;
INSERT INTO `wpdh_options` VALUES (1,'siteurl','https://rawenergy.co.uk/oldbackup','yes'),(2,'home','https://rawenergy.co.uk/oldbackup','yes'),(3,'blogname','Raw Energy','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','mholmes778@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','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','j F Y','yes'),(24,'time_format','H:i','yes'),(25,'links_updated_date_format','j F Y H:i','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:140:{s:11:\"services/?$\";s:28:\"index.php?post_type=services\";s:41:\"services/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=services&feed=$matches[1]\";s:36:\"services/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=services&feed=$matches[1]\";s:28:\"services/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=services&paged=$matches[1]\";s:11:\"projects/?$\";s:28:\"index.php?post_type=projects\";s:41:\"projects/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=projects&feed=$matches[1]\";s:36:\"projects/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=projects&feed=$matches[1]\";s:28:\"projects/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=projects&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:36:\"services/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"services/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"services/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"services/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"services/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"services/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"services/([^/]+)/embed/?$\";s:41:\"index.php?services=$matches[1]&embed=true\";s:29:\"services/([^/]+)/trackback/?$\";s:35:\"index.php?services=$matches[1]&tb=1\";s:49:\"services/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?services=$matches[1]&feed=$matches[2]\";s:44:\"services/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?services=$matches[1]&feed=$matches[2]\";s:37:\"services/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?services=$matches[1]&paged=$matches[2]\";s:44:\"services/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?services=$matches[1]&cpage=$matches[2]\";s:33:\"services/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?services=$matches[1]&page=$matches[2]\";s:25:\"services/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"services/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"services/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"services/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"services/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"services/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"projects/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"projects/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"projects/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"projects/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"projects/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"projects/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"projects/([^/]+)/embed/?$\";s:41:\"index.php?projects=$matches[1]&embed=true\";s:29:\"projects/([^/]+)/trackback/?$\";s:35:\"index.php?projects=$matches[1]&tb=1\";s:49:\"projects/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?projects=$matches[1]&feed=$matches[2]\";s:44:\"projects/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?projects=$matches[1]&feed=$matches[2]\";s:37:\"projects/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?projects=$matches[1]&paged=$matches[2]\";s:44:\"projects/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?projects=$matches[1]&cpage=$matches[2]\";s:33:\"projects/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?projects=$matches[1]&page=$matches[2]\";s:25:\"projects/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"projects/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"projects/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"projects/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"projects/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"projects/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s: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:38:\"index.php?&page_id=6&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:10:{i:2;s:34:\"cloudflare-flexible-ssl/plugin.php\";i:3;s:29:\"gravityforms/gravityforms.php\";i:4;s:51:\"acf-gravityforms-add-on/acf-gravityforms-add-on.php\";i:5;s:34:\"advanced-custom-fields-pro/acf.php\";i:6;s:33:\"classic-editor/classic-editor.php\";i:7;s:21:\"safe-svg/safe-svg.php\";i:8;s:53:\"simple-custom-post-order/simple-custom-post-order.php\";i:9;s:43:\"sticky-posts-switch/sticky-posts-switch.php\";i:10;s:36:\"trustpilot-reviews/wc_trustpilot.php\";i:11;s:39:\"wp-file-manager/file_folder_manager.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','1','yes'),(39,'recently_edited','a:5:{i:0;s:79:\"/home/rawenergyco/public_html/oldbackup/wp-content/themes/raw-energy/footer.php\";i:1;s:78:\"/home/rawenergyco/public_html/oldbackup/wp-content/themes/raw-energy/style.css\";i:3;s:89:\"/home/rawenergyco/public_html/oldbackup/wp-content/themes/raw-energy/archive-services.php\";i:4;s:89:\"/home/rawenergyco/public_html/oldbackup/wp-content/themes/raw-energy/archive-projects.php\";i:5;s:92:\"/home/rawenergyco/public_html/oldbackup/wp-content/themes/raw-energy/page-templates/team.php\";}','no'),(40,'template','raw-energy','yes'),(41,'stylesheet','raw-energy','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:2:{i:0;i:14;i:1;i:29;}','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:1:{s:53:\"simple-custom-post-order/simple-custom-post-order.php\";s:18:\"scporder_uninstall\";}','no'),(80,'timezone_string','Europe/London','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','6','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','273','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','1699888267','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,'wpdh_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'WPLANG','en_GB','yes'),(103,'user_count','3','no'),(104,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}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'),(105,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(106,'cron','a:8:{i:1692629188;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:1692630667;a:5:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1692631174;a:3:{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;}}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:1692631175;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:1692631631;a:1:{s:17:\"gravityforms_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:1692889867;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:1692933126;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;}}}s:7:\"version\";i:2;}','yes'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'recovery_keys','a:0:{}','yes'),(123,'https_detection_errors','a:0:{}','yes'),(127,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1684337213;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'),(156,'finished_updating_comment_type','1','yes'),(157,'current_theme','Raw Energy','yes'),(158,'theme_mods_padel-people','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1684363229;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','yes'),(159,'theme_switched','','yes'),(160,'recently_activated','a:2:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1692637642;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:1692637642;}','yes'),(161,'gf_db_version','2.5.8.1','no'),(162,'rg_form_version','2.5.8.1','no'),(163,'gform_enable_background_updates','1','yes'),(165,'gform_pending_installation','','yes'),(166,'gravityformsaddon_gravityformswebapi_version','1.0','yes'),(167,'widget_gform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(169,'gform_version_info','a:10:{s:12:\"is_valid_key\";b:0;s:6:\"reason\";s:7:\"expired\";s:7:\"version\";s:6:\"2.7.12\";s:3:\"url\";s:0:\"\";s:15:\"expiration_time\";i:1573084800;s:9:\"offerings\";a:73:{s:12:\"gravityforms\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:6:\"2.7.12\";s:14:\"version_latest\";s:6:\"2.7.12\";}s:17:\"gravityforms-beta\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:8:\"2.7-rc-2\";s:14:\"version_latest\";s:8:\"2.7-rc-2\";}s:21:\"gravityforms2checkout\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.1\";s:14:\"version_latest\";s:3:\"2.1\";}s:26:\"gravityformsactivecampaign\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";}s:32:\"gravityformsadvancedpostcreation\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.3\";}s:20:\"gravityformsagilecrm\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:5:\"1.4.1\";}s:19:\"gravityformsakismet\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";}s:24:\"gravityformsauthorizenet\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";}s:18:\"gravityformsaweber\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.0.0\";s:14:\"version_latest\";s:5:\"4.0.0\";}s:21:\"gravityformsbatchbook\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";}s:18:\"gravityformsbreeze\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.1\";}s:27:\"gravityformscampaignmonitor\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.9\";s:14:\"version_latest\";s:5:\"3.9.1\";}s:20:\"gravityformscampfire\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";}s:22:\"gravityformscapsulecrm\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:5:\"1.6.1\";}s:26:\"gravityformschainedselects\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:3:\"1.6\";}s:31:\"gravityformschainedselects-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:12:\"1.0-beta-1.3\";}s:23:\"gravityformscleverreach\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:3:\"1.8\";}s:15:\"gravityformscli\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:3:\"1.4\";}s:27:\"gravityformsconstantcontact\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";}s:31:\"gravityformsconversationalforms\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";}s:19:\"gravityformscoupons\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:3:\"3.1\";}s:17:\"gravityformsdebug\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0.beta12\";}s:19:\"gravityformsdropbox\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:3:\"3.1\";}s:24:\"gravityformsdropbox-beta\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:12:\"2.0-beta-1.1\";}s:24:\"gravityformsemailoctopus\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.2.2\";}s:16:\"gravityformsemma\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.2\";}s:22:\"gravityformsfreshbooks\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";}s:23:\"gravityformsgeolocation\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";}s:23:\"gravityformsgetresponse\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:5:\"1.7.1\";}s:27:\"gravityformsgoogleanalytics\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.3\";}s:21:\"gravityformsgutenberg\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";}s:21:\"gravityformshelpscout\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.1\";s:14:\"version_latest\";s:5:\"2.1.1\";}s:20:\"gravityformshighrise\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:19:\"gravityformshubspot\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.9\";s:14:\"version_latest\";s:3:\"1.9\";}s:20:\"gravityformsicontact\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.1\";}s:19:\"gravityformslogging\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";}s:19:\"gravityformsmadmimi\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:5:\"1.4.1\";}s:21:\"gravityformsmailchimp\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"5.2\";s:14:\"version_latest\";s:5:\"5.2.1\";}s:19:\"gravityformsmailgun\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";}s:22:\"gravityformsmoderation\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";}s:18:\"gravityformsmollie\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";}s:26:\"gravityformspartialentries\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";}s:18:\"gravityformspaypal\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";N;}s:29:\"gravityformspaypalpaymentspro\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";}s:21:\"gravityformspaypalpro\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.3.1\";}s:17:\"gravityformspolls\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.1\";s:14:\"version_latest\";s:3:\"4.1\";}s:20:\"gravityformspostmark\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";}s:16:\"gravityformsppcp\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.6.0\";s:14:\"version_latest\";s:5:\"2.6.0\";}s:21:\"gravityformsppcp-beta\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-3\";s:14:\"version_latest\";s:10:\"2.0-beta-3\";}s:24:\"gravityformsppcp-release\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.2\";}s:16:\"gravityformsquiz\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.1\";s:14:\"version_latest\";s:3:\"4.1\";}s:21:\"gravityformsrecaptcha\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.1.3\";}s:19:\"gravityformsrestapi\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";}s:20:\"gravityformssendgrid\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";}s:21:\"gravityformssignature\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.5\";s:14:\"version_latest\";s:3:\"4.5\";}s:17:\"gravityformsslack\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";}s:18:\"gravityformssquare\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.0.0\";s:14:\"version_latest\";s:5:\"2.0.0\";}s:18:\"gravityformsstripe\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.1.0\";s:14:\"version_latest\";s:5:\"5.1.1\";}s:23:\"gravityformsstripe-beta\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"5.0-beta-1\";s:14:\"version_latest\";s:10:\"5.0-beta-1\";}s:18:\"gravityformssurvey\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.8\";s:14:\"version_latest\";s:3:\"3.8\";}s:18:\"gravityformstrello\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";}s:21:\"gravityformsturnstile\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";}s:18:\"gravityformstwilio\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.9\";s:14:\"version_latest\";s:5:\"2.9.1\";}s:28:\"gravityformsuserregistration\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"5.1\";s:14:\"version_latest\";s:5:\"5.1.1\";}s:20:\"gravityformswebhooks\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";}s:18:\"gravityformszapier\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.2\";s:14:\"version_latest\";s:5:\"4.2.1\";}s:23:\"gravityformszapier-beta\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"4.0-beta-2\";s:14:\"version_latest\";s:10:\"4.0-beta-2\";}s:19:\"gravityformszohocrm\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";}s:11:\"gravitysmtp\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:11:\"1.0-alpha-1\";s:14:\"version_latest\";s:11:\"1.0-alpha-2\";}}s:9:\"is_active\";s:1:\"1\";s:12:\"product_code\";s:5:\"GFDEV\";s:14:\"version_latest\";s:6:\"2.7.12\";s:9:\"timestamp\";i:1692637462;}','no'),(170,'acf_version','6.1.6','yes'),(175,'theme_mods_raw-energy','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:5:{s:12:\"primary-menu\";i:2;s:19:\"footer-service-menu\";i:3;s:20:\"footer-services-menu\";i:3;s:11:\"footer-menu\";i:4;s:16:\"footer-data-menu\";i:5;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(231,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(233,'category_children','a:0:{}','yes'),(274,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"mholmes778@gmail.com\";s:7:\"version\";s:3:\"6.3\";s:9:\"timestamp\";i:1691550762;}','no'),(430,'options_email_address','info@rawenergy.co.uk','no'),(431,'_options_email_address','field_646b82df912cf','no'),(432,'options_phone_number','+44 (0) 1285 889869','no'),(433,'_options_phone_number','field_646b82e9912d0','no'),(434,'options_contact_address','Trent Lodge, Stroud Road\r\nCirencester, Gloucestershire, GL7 6JN','no'),(435,'_options_contact_address','field_646b831a912d1','no'),(436,'options_linkedin_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:52:\"https://www.linkedin.com/company/raw-energy-limited/\";s:6:\"target\";s:6:\"_blank\";}','no'),(437,'_options_linkedin_link','field_646b8377912d3','no'),(438,'options_instagram_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:39:\"https://www.instagram.com/rawenergyltd/\";s:6:\"target\";s:6:\"_blank\";}','no'),(439,'_options_instagram_link','field_646b8395912d4','no'),(440,'options_facebook_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:55:\"https://www.facebook.com/profile.php?id=100076084641479\";s:6:\"target\";s:6:\"_blank\";}','no'),(441,'_options_facebook_link','field_646b83a5912d5','no'),(442,'options_twitter_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:32:\"https://twitter.com/rawenergyltd\";s:6:\"target\";s:6:\"_blank\";}','no'),(443,'_options_twitter_link','field_646b83b4912d6','no'),(479,'sticky_posts_switch_options','a:5:{s:10:\"post_types\";a:3:{i:0;s:4:\"post\";i:1;s:8:\"services\";i:2;s:8:\"projects\";}s:18:\"show_on_front_page\";a:3:{i:0;s:4:\"post\";i:1;s:8:\"services\";i:2;s:8:\"projects\";}s:15:\"show_on_archive\";a:3:{i:0;s:4:\"post\";i:1;s:8:\"services\";i:2;s:8:\"projects\";}s:10:\"icon_color\";s:7:\"#dd9933\";s:10:\"sort_order\";a:8:{i:0;s:2:\"cb\";i:1;s:11:\"sticky_post\";i:2;s:5:\"title\";i:3;s:6:\"author\";i:4;s:10:\"categories\";i:5;s:4:\"tags\";i:6;s:8:\"comments\";i:7;s:4:\"date\";}}','yes'),(500,'options_testimonials_0_testimonial_title','Solar PV & battery install','no'),(501,'_options_testimonials_0_testimonial_title','field_646ba15ef9c79','no'),(502,'options_testimonials_0_testimonial_content','I have recently just had a full solar PV and battery install completed by RAW Energy, after spending months trying to find the right people and system. I had several initial quotes and roof measurements taken from other places and all of them fell short on what they could initially offer, they said due to me having 2 solar thermal panels.','no'),(503,'_options_testimonials_0_testimonial_content','field_646ba16bf9c7a','no'),(504,'options_testimonials_0_testimonial_author','James Eddiford','no'),(505,'_options_testimonials_0_testimonial_author','field_646ba179f9c7b','no'),(506,'options_testimonials_0_testimonial_star_rating','5','no'),(507,'_options_testimonials_0_testimonial_star_rating','field_646ba182f9c7c','no'),(508,'options_testimonials','1','no'),(509,'_options_testimonials','field_646ba144f9c78','no'),(629,'rg_gforms_key','7a471f5b6f659fb3ba8954d77470a13b','yes'),(630,'gform_enable_noconflict','1','yes'),(631,'rg_gforms_enable_akismet','1','yes'),(632,'rg_gforms_currency','','yes'),(633,'gform_enable_toolbar_menu','1','yes'),(634,'rg_gforms_enable_html5','1','yes'),(744,'gf_dismissed_upgrades','a:1:{i:0;s:5:\"2.7.7\";}','yes'),(753,'trustpilot_just_installed','1','yes'),(754,'trustpilot_settings','{\"general\":{\"key\":\"\",\"invitationTrigger\":\"orderConfirmed\", \"mappedInvitationTrigger\":[]},\"trustbox\":{\"trustboxes\":[]},\n \"skuSelector\": \"none\", \"mpnSelector\": \"none\", \"gtinSelector\": \"none\"}','yes'),(755,'trustpilot_past_orders','0','yes'),(756,'trustpilot_failed_orders','{}','yes'),(757,'trustpilot_plugin_status','{\"pluginStatus\": 200, \"blockedDomains\": []}','yes'),(758,'show_past_orders_initial','true','yes'),(759,'sync_in_progress','false','yes'),(782,'fm_key','71XNspMAxiUayqdFeYVKg2nEL','yes'),(785,'filemanager_email_verified_1','yes','yes'),(786,'mk_fm_close_fm_help_c_fm','done','yes'),(905,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:14:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.52\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:259:\"<ul class=\"description\"><li>Remove the import limit of 512MB</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40189;s:14:\"update_message\";s:215:\"You may be a victim of software counterfeiting. The license installed on your extension is likely non-genuine or pirated. For assistance, contact us at <a href=\"mailto:support@servmask.com\">support@servmask.com</a>.\";}}','yes'),(910,'cpto_options','a:7:{s:23:\"show_reorder_interfaces\";a:6:{s:4:\"post\";s:4:\"show\";s:10:\"attachment\";s:4:\"show\";s:8:\"wp_block\";s:4:\"show\";s:13:\"wp_navigation\";s:4:\"show\";s:8:\"services\";s:4:\"show\";s:8:\"projects\";s:4:\"show\";}s:32:\"allow_reorder_default_interfaces\";a:10:{s:4:\"post\";s:2:\"no\";s:4:\"page\";s:2:\"no\";s:10:\"attachment\";s:2:\"no\";s:8:\"wp_block\";s:2:\"no\";s:13:\"wp_navigation\";s:2:\"no\";s:8:\"services\";s:2:\"no\";s:8:\"projects\";s:2:\"no\";s:13:\"acf-post-type\";s:2:\"no\";s:12:\"acf-taxonomy\";s:2:\"no\";s:15:\"acf-field-group\";s:2:\"no\";}s:8:\"autosort\";i:1;s:9:\"adminsort\";i:1;s:18:\"use_query_ASC_DESC\";s:0:\"\";s:10:\"capability\";s:14:\"manage_options\";s:21:\"navigation_sort_apply\";i:1;}','yes'),(911,'CPT_configured','TRUE','yes'),(934,'scporder_install','1','yes'),(935,'simple-rate-time','1843755638','yes'),(936,'scporder_options','a:3:{s:7:\"objects\";a:2:{i:0;s:8:\"services\";i:1;s:8:\"projects\";}s:4:\"tags\";s:0:\"\";s:18:\"show_advanced_view\";s:0:\"\";}','yes'),(1373,'options_approved_contractor','245','no'),(1374,'_options_approved_contractor','field_64803518d8903','no'),(1377,'new_admin_email','mholmes778@gmail.com','yes'),(1399,'https_migration_required','1','yes'),(1402,'gform_email_count','57','yes'),(3863,'options_projects_lead','We are a team of <span>enthusiastic, likeminded, and efficient people</span>, here to partner with those who share our values and our desire to make the world better for all.','no'),(3864,'_options_projects_lead','field_64b13218c4170','no'),(5362,'db_upgraded','','yes'),(5862,'can_compress_scripts','1','yes'),(6163,'ai1wm_backups_labels','a:0:{}','yes'),(6164,'ai1wm_sites_links','a:0:{}','yes'),(6165,'_transient_doing_cron','1699533273.0856170654296875000000','yes'),(6166,'ai1wmue_plugin_key','2a300ce2-a217-4fc1-bb90-a6d76c676d07','yes'),(6168,'swift_performance_plugin_organizer','a:0:{}','yes'),(6169,'jetpack_active_modules','a:0:{}','yes'),(6173,'_site_transient_t15s-registry-gforms','O:8:\"stdClass\":2:{s:8:\"projects\";a:55:{s:26:\"gravityformsactivecampaign\";a:1:{s:12:\"translations\";a:24:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:47+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-04-29T16:44:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:09+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:49+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:50+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:54+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:28:07+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:48+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-27T13:41:07+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-25T15:23:16+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:35:58+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:38:41+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:10+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-24T15:29:26+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:12+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:14+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-31T16:22:35+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:16+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-21T10:42:11+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:33+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsaweber\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2022-06-27T08:43:10+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:50+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:50+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:53+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:53+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:53+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:53+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.0.0\";s:7:\"updated\";s:25:\"2023-01-06T07:59:38+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformsagilecrm\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:37:51+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:13+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:35+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:03+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T08:36:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T08:36:11+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T08:36:16+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-13T08:58:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:37+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:43+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-14T17:37:39+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:37+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:40+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-27T21:55:07+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:26+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:49+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:54+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:24:\"gravityformsauthorizenet\";a:1:{s:12:\"translations\";a:21:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:14+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:40+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-29T15:48:18+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-19T11:05:17+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-19T11:04:01+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-02T20:29:58+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-21T11:50:09+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:21+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:39+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:45+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-14T17:38:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2021-09-13T20:54:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:01:32+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:53:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:49+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:53+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-11-05T09:28:49+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformsbatchbook\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:51:40+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:52:19+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:20+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:36+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:24+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-01-22T16:00:21+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:48+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-03-14T17:40:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:41+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:32+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-10-21T18:08:50+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:59+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:03:01+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsbreeze\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T08:03:49+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-21T11:51:14+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T16:59:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T16:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-27T15:24:22+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-04T15:55:14+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-03-14T17:41:59+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T08:03:51+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T08:03:53+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-12-17T15:54:19+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-04T15:53:05+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T16:59:34+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-21T18:01:43+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-05T09:41:54+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T08:36:50+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:27:\"gravityformscampaignmonitor\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-10-27T15:32:30+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-10-21T13:33:21+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:34+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-10-27T15:32:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:57+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:01:03+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-03-14T17:42:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:01:15+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:01:17+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-12-17T15:54:37+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-04T16:34:37+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:45+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:01:27+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:01:29+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2022-06-27T08:43:40+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformscampfire\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:21+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:39+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:01:41+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:51+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:34+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2022-06-27T09:53:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:01:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-18T11:26:09+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-01-22T16:22:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:47+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-14T17:44:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:55+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:44:01+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-13T09:15:04+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:22:\"gravityformscapsulecrm\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:54+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:02:49+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:32+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:04+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2022-06-27T08:52:42+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2022-06-27T08:52:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-25T20:59:21+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:02:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:14+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:16+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-03-14T17:44:51+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:34+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:37+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-06-15T19:59:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:42+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:03+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-06-05T06:33:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:49+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:51+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:26:\"gravityformschainedselects\";a:1:{s:12:\"translations\";a:20:{s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2023-04-14T18:06:58+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2022-06-23T19:13:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2023-01-06T17:04:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-10-27T15:57:33+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-11-04T16:39:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-11-04T16:39:05+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-10-27T15:56:33+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-11-04T16:40:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-12-17T14:50:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2021-09-13T21:00:54+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-12-17T15:03:03+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-12-17T15:55:04+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-11-04T16:40:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2023-01-06T17:04:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-10-21T17:43:40+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-10-27T15:55:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:23:\"gravityformscleverreach\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:10+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-10-27T16:14:47+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2022-06-27T08:54:38+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2022-06-27T08:54:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:28+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:32+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:14+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:34+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:36+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:43+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-03-14T17:45:38+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-12-17T15:03:13+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-12-17T15:55:14+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:06:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:05:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-10-21T17:59:57+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:06:10+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2022-06-27T09:55:53+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformscoupons\";a:1:{s:12:\"translations\";a:21:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:14+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-05T09:29:49+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2019-12-10T12:39:35+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-10T11:17:44+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2020-11-04T17:00:33+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:06:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-05T09:16:54+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-16T12:10:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-23T05:04:47+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:38:39+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:30:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-12T14:45:30+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-11T16:33:20+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-15T00:41:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-05-16T22:25:43+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-25T07:08:10+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-06T09:04:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformsdropbox\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-13T12:16:26+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:56:15+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:07:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-10-25T16:33:03+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-27T15:50:14+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:56:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-20T21:27:29+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-27T07:06:04+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-14T17:47:33+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:38:39+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-10-02T10:45:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-28T17:59:38+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-06-15T20:02:16+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-27T15:58:55+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-27T07:38:08+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-29T17:57:54+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-16T16:53:01+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformsemma\";a:1:{s:12:\"translations\";a:25:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:41+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-03-02T20:39:07+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:08:42+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:22+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:08:58+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-03-02T20:38:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T08:57:24+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:08:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-26T16:08:20+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:05+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:07+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-04-11T09:52:51+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-03-14T17:48:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:18+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2021-09-14T09:31:53+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:26+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T08:57:38+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:31+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:08:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:35+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:37+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T09:53:24+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsfreshbooks\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:49+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:29+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-02-20T14:36:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-10-21T11:51:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:52+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:11+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:19+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-03-14T17:49:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-09-14T09:32:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-12-17T15:53:03+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:39+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:59+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-02-08T11:26:17+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:44+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:23:\"gravityformsgetresponse\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:10:57+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T17:36:04+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T08:58:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T08:58:11+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:13+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:16+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T17:34:56+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:18+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T17:34:11+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-03-14T17:49:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:39+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:41+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:42+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T17:35:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2021-02-08T11:28:42+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:52+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:24+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformshelpscout\";a:1:{s:12:\"translations\";a:19:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:27+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:31+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-11T17:38:30+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:40+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:42+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:19+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T16:20:17+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:08+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-11-05T09:45:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:27+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:50:31+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:46+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:48+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T23:03:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-20T06:44:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:15+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-11-04T18:39:39+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:13:00+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformshighrise\";a:1:{s:12:\"translations\";a:21:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:59:10+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:14:10+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:12+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:45+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:21+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:25+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:27+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-07-17T13:47:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:18+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:33+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:35+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-03-14T17:51:12+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:52+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:54+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:56+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2021-08-02T17:30:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:14:05+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:14:07+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformshipchat\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:44+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2022-06-27T10:00:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:50+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:25+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:00+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:04+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-21T13:28:02+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:57+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:55+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-21T12:24:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-01-25T07:46:44+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:18+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-03-14T17:51:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:23+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:14:57+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:14:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:32+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:06+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2021-08-02T17:31:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-13T09:22:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformsmadmimi\";a:1:{s:12:\"translations\";a:31:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-02-20T14:25:46+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:28+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:45:20+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:07+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:04+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:45:05+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-10-21T11:52:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:52+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:45:09+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-26T08:20:24+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-14T17:52:56+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:45:12+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-10-02T10:46:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:11+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-12-17T15:55:55+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:11+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:16+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:48+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-08-02T17:35:32+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:24+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:26+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsmailchimp\";a:1:{s:12:\"translations\";a:20:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:35+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:15+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:43:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2019-12-10T13:04:54+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-25T16:35:54+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:39+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-17T13:48:34+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:05+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-02-04T16:58:16+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:11+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:17+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:19+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-25T23:02:38+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:25+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:47+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:29+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:26:\"gravityformspartialentries\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-02-20T14:25:47+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-27T10:03:45+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:21+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-29T15:47:04+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-21T13:19:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:17:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:05+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-12-17T14:50:15+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2021-09-14T09:48:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-12-17T15:55:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:31+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:17:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2021-08-02T17:40:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-11-05T09:27:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:29:\"gravityformspaypalpaymentspro\";a:1:{s:12:\"translations\";a:20:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:44+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:48+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2019-12-10T13:12:45+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-03-24T14:22:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:07:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:10+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-03-14T17:54:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-14T09:52:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:29+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-12-17T14:13:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:10:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-29T18:02:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:40+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformspaypal\";a:1:{s:12:\"translations\";a:20:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:51+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-27T10:05:05+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2019-12-10T13:15:51+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-10-21T11:52:44+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:19:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:13+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:15+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-03-14T17:54:51+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-14T09:52:14+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-12-17T15:54:54+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:03+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-29T18:06:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:46+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformspaypalpro\";a:1:{s:12:\"translations\";a:25:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2022-06-27T09:50:21+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2022-06-27T10:14:36+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-02T20:50:54+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:59:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:02+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:18+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-03-24T11:58:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:58+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-01-26T16:02:58+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:41:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-01-27T16:56:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-02T20:50:29+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-14T17:55:20+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2019-12-10T13:19:22+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-09-14T09:53:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:53:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:40+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:57:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:26+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-11-04T18:47:08+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:42:28+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:17:\"gravityformspolls\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2020-11-05T15:15:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:10+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:12+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:20+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:51:24+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2020-10-21T13:43:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2020-11-05T15:13:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:24+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2020-11-05T15:17:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2023-03-14T17:55:58+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-09-14T09:55:19+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2020-12-17T14:20:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2020-12-17T14:19:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2020-11-05T15:18:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2021-11-04T18:52:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:25:\"2020-06-29T08:29:29+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformspostmark\";a:1:{s:12:\"translations\";a:15:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-24T11:44:53+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:11:37+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-25T21:03:26+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-31T19:40:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-03-29T18:54:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-22T09:30:48+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-26T12:48:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-06-04T08:26:03+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:55:49+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-31T04:01:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-04-11T21:20:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-20T16:53:54+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-06-01T17:59:01+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-06-05T06:35:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-26T23:45:38+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformsquiz\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-27T09:10:00+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:24:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-27T09:10:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-27T09:10:14+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-27T09:10:26+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-03-02T20:27:35+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-27T09:10:32+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:24:15+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:24:32+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:24:34+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:24:41+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-04-01T00:37:47+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-27T09:11:02+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-03-24T15:30:36+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-27T09:11:08+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:25:00+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:24:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-07-15T19:25:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-27T09:11:22+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformssignature\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-02-20T14:25:47+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-02-20T14:32:41+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2022-06-27T10:11:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-05T10:00:55+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2021-08-12T08:00:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-02T20:55:38+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-04T11:55:12+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-02T20:55:33+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-02T20:55:40+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-02T20:55:41+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-02T20:55:44+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-02T20:55:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2021-09-14T09:57:36+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-12T14:45:18+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-11T15:48:10+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-15T00:44:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-20T18:21:48+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-25T07:10:36+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"4.5\";s:7:\"updated\";s:25:\"2023-03-06T09:12:09+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:17:\"gravityformsslack\";a:1:{s:12:\"translations\";a:19:{s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-04-14T18:11:09+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-05T09:57:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:26:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-04T11:54:33+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-20T13:44:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:26:48+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-05T09:29:59+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T13:29:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-23T05:05:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:27:08+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-12T14:43:50+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-06-15T20:04:46+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-15T00:45:58+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-20T18:21:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-25T06:00:54+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-06T09:11:19+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformsstripe\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-12T13:40:48+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-15T13:32:09+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-12T13:40:42+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-12T13:40:48+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-12T13:40:48+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-12T13:40:49+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-27T14:29:32+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-20T07:47:39+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-12T13:40:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-22T10:53:42+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-26T17:28:19+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-26T05:54:52+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-12T13:40:49+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-16T20:43:13+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-15T20:17:47+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-23T15:45:58+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-23T22:56:18+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-29T17:22:24+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:25:\"2023-06-15T13:14:59+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformssurvey\";a:1:{s:12:\"translations\";a:25:{s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-04-14T18:14:00+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-06-27T10:14:22+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-06-23T19:14:15+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-03-02T20:58:13+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:19:33+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-03-02T20:57:55+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-10-21T11:49:45+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:18:23+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:17:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-02-20T14:38:29+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-03-02T20:57:59+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:16:42+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:18:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-03-02T20:58:03+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2021-09-14T10:15:27+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-12-17T14:59:21+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-12-17T15:04:46+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:18:00+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:19:05+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-07-16T20:11:56+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-05T09:28:06+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformstrello\";a:1:{s:12:\"translations\";a:19:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:16+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:29:40+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:23+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:29:56+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:00+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:29:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:06+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:57:49+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:25+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:28+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:30+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:34+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:29:53+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-09-29T17:59:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-09-16T16:50:37+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformstwilio\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-11-06T13:29:03+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-05T16:46:39+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2022-06-27T09:02:55+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-10-21T13:19:12+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:12+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-11-06T13:26:40+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-11-06T13:26:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-03-14T17:58:48+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:31+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-12-17T15:07:56+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-11-06T13:28:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-11-06T13:28:39+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:42+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:44+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:28:\"gravityformsuserregistration\";a:1:{s:12:\"translations\";a:21:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:16+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:56+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T10:16:26+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-11T17:40:17+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T10:16:33+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T10:16:36+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2019-12-10T13:55:19+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:17:46+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-20T10:33:20+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-03-29T19:18:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-11-01T19:35:43+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:59:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:37+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:39+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-05-05T15:53:47+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:38+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:07+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-11-04T18:52:12+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformszapier\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:35+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:43+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:29+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:32+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:39+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-07-23T08:59:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:07+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:24+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:26+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-03-14T18:00:03+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:47+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-07-19T11:08:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:52+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:15+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-06-06T19:46:51+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-07-21T22:08:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformszohocrm\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-01-06T17:34:10+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:12+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2022-06-27T09:02:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-01-06T17:34:25+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:12+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:12+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-01-06T17:34:31+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:12+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:11+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:12+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-01-06T17:34:51+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:12+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:12+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:11+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:11+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2023-05-04T08:14:12+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformsicontact\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:19+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-05T12:40:54+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:34+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-21T13:33:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-05T12:39:50+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:40+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:43+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:49+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-03-14T17:52:22+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:36:01+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:36:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-12-17T14:06:18+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-05T12:40:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:31+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2021-08-02T17:34:13+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:36:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:24:\"gravityformsemailoctopus\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:36:38+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-06-23T13:15:59+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:36:53+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-10-21T15:28:15+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:36:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-06-23T13:15:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-06-23T13:15:56+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:37:07+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-14T17:47:59+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:37:20+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:37:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-06-23T13:16:02+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-06-23T13:16:03+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:36:50+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:37:32+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:37:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformsmailgun\";a:1:{s:12:\"translations\";a:20:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T10:02:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:02:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:24+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T10:01:47+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:02:33+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-03-02T20:46:07+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-21T11:48:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:37:49+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:07+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:08+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:15+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-12-17T14:49:05+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:47:07+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-12-17T15:01:51+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-12-17T15:53:35+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:33+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:37:57+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:37+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-05T09:42:12+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformssendgrid\";a:1:{s:12:\"translations\";a:21:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:16+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:05:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T09:11:37+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-21T13:18:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:06:48+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-26T16:08:21+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:110:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-07-04T20:05:08+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-06-28T10:45:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-05-23T18:18:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:07:21+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2021-09-14T09:57:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-12-17T14:33:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-12-17T14:32:57+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:06:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-04T22:55:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:05:23+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-05-15T07:53:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformssquare\";a:1:{s:12:\"translations\";a:16:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2023-03-05T09:58:32+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2022-06-27T09:13:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2022-06-27T09:13:16+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2022-07-15T09:36:00+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2022-07-13T19:50:31+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2022-06-27T09:13:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:40:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2022-07-01T14:23:05+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:40:27+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2021-10-02T10:47:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:40:40+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2022-06-29T23:32:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2022-10-08T16:03:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:40:08+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2022-07-16T20:22:58+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.0\";s:7:\"updated\";s:25:\"2023-01-06T17:40:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformshubspot\";a:1:{s:12:\"translations\";a:15:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-05T14:22:47+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2022-06-27T09:00:32+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-08T11:14:38+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-20T14:30:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-01-06T17:41:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-05T15:02:53+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-15T15:57:06+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-18T06:09:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-01-06T17:41:41+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-22T18:52:51+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-05T17:03:26+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-10T17:12:37+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-16T22:26:43+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-06-30T06:42:49+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:25:\"2023-05-11T14:43:07+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformsppcp\";a:1:{s:12:\"translations\";a:17:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-15T13:43:06+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-12T13:39:58+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-12T13:39:58+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-12T13:39:58+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-27T14:20:46+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-20T07:51:20+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-12T13:39:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-22T10:46:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-26T17:24:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-26T04:46:09+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-12T13:39:57+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-16T15:51:42+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-15T20:19:21+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-23T15:52:58+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-23T22:53:41+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-29T17:20:47+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.6.0\";s:7:\"updated\";s:25:\"2023-06-15T13:17:06+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformsmollie\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2020-05-06T16:23:36+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-03-05T09:55:14+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-06-27T10:02:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-06-27T10:02:55+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:03:03+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-03-02T20:47:21+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-07T14:24:38+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-28T20:14:02+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2020-11-01T09:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-21T18:12:43+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-24T14:57:42+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-03-14T17:53:36+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2021-09-14T09:47:36+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:43:55+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-06-15T20:15:16+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-08T16:04:34+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:43:24+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-20T19:20:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-08T00:03:48+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityforms2checkout\";a:1:{s:12:\"translations\";a:20:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-06-23T19:16:18+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:24+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-03-05T08:17:22+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:29+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-06-23T19:15:48+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-02-19T14:45:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-03-02T20:27:36+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-10-07T14:24:11+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-10-28T20:12:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2021-02-02T19:49:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-10-21T18:14:17+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-10-24T14:57:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-10-21T03:24:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2021-10-02T10:44:57+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-10-09T22:00:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-10-23T22:37:43+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-10-08T16:04:53+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:44:29+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-10-20T19:20:14+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.1.1\";s:7:\"updated\";s:25:\"2022-10-08T00:03:20+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:32:\"gravityformsadvancedpostcreation\";a:1:{s:12:\"translations\";a:28:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-02-20T14:25:48+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-04-14T18:10:48+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-01-06T17:46:19+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:20+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2020-05-29T10:51:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2022-06-27T09:36:41+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2022-06-27T09:36:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2022-06-27T09:53:40+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2020-10-21T11:23:19+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-01-06T17:45:25+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-01-06T17:45:42+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2020-05-29T10:50:56+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-01-26T08:20:22+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2020-05-29T10:50:39+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-02-17T09:54:26+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-01-06T17:46:01+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2020-06-01T20:44:34+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2020-06-07T14:59:25+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2022-06-27T09:53:12+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2020-05-29T10:51:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2022-06-27T09:53:17+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2022-06-27T09:36:49+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-01-06T17:45:33+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2020-05-29T10:51:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2023-01-06T17:46:15+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.3.3\";s:7:\"updated\";s:25:\"2022-06-27T09:53:25+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformswebhooks\";a:1:{s:12:\"translations\";a:15:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-02-20T14:35:46+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-19T17:04:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-23T08:19:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:46:31+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:46:51+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-22T12:47:49+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-28T15:41:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-14T17:59:52+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:47:11+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-22T20:34:31+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-31T18:10:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-19T13:24:55+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:46:41+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-08-02T17:40:38+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:47:24+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformspipe\";a:1:{s:12:\"translations\";a:14:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-26T07:37:52+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-20T16:25:47+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-03T14:29:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-01T10:02:06+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-25T15:56:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-02T07:32:59+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-03-14T17:55:39+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:54:12+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-10T22:09:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:48:20+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-29T05:59:20+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-04T22:40:13+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:08:58+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-26T10:13:02+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:27:\"gravityformsconstantcontact\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:12+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:00:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-26T09:00:35+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:20+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:00:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-02T20:35:48+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-21T11:36:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:48:43+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:00+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-25T15:55:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:07+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-14T17:46:28+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-02T20:35:55+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:20+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-29T05:29:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:48:51+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-23T18:56:46+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:39+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:41+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:12:\"gravityforms\";a:1:{s:12:\"translations\";a:29:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-02T20:25:20+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-04-15T14:49:49+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-07-04T22:55:05+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-02T20:26:56+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-01-26T08:32:36+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-02T20:25:25+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-06T09:34:53+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-02T20:25:40+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-02T20:25:43+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-16T08:55:27+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-01-26T08:17:09+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-04-27T12:28:36+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-04-15T11:54:37+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-04-05T08:33:44+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-07-03T15:05:28+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-07-13T14:36:53+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-02T20:26:01+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-13T18:42:07+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-01-26T08:19:30+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-19T18:27:24+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-26T18:23:00+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-02T20:26:37+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-02T20:26:43+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-12T15:11:31+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-21T13:04:13+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-15T02:44:29+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-20T18:41:19+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-25T07:06:24+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:8:\"2.7.12.1\";s:7:\"updated\";s:25:\"2023-03-20T20:13:07+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformsrecaptcha\";a:1:{s:12:\"translations\";a:17:{s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2023-03-02T20:54:35+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-02T13:30:24+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-08-12T07:58:23+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2023-03-02T20:54:21+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-02T13:26:19+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-02T13:23:08+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-02T13:26:50+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:52:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-02T13:28:22+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-04T07:24:55+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-10-02T10:47:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-02T13:31:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-02T13:31:56+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-02T13:32:29+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-02T13:24:39+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-05T20:09:56+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.1.3\";s:7:\"updated\";s:25:\"2021-06-02T13:33:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:22:\"gravityformsmoderation\";a:1:{s:12:\"translations\";a:12:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-05T09:54:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-12T12:54:41+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-20T13:44:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-07T10:56:35+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-16T12:07:04+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-23T05:49:28+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-12T14:43:23+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-20T16:25:23+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-14T15:50:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-20T18:20:16+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-24T08:15:38+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-06T09:18:21+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:23:\"gravityformsgeolocation\";a:1:{s:12:\"translations\";a:12:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-09T11:57:26+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-10T12:47:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-20T13:42:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-07T10:14:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-16T12:09:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-23T05:01:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-12T14:43:13+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-11T16:29:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-05-10T17:31:44+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-20T18:18:56+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-24T08:10:44+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-06T09:09:55+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:31:\"gravityformsconversationalforms\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:37:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:19+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-15T13:34:35+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:24+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:26+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:32+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-27T14:17:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-20T07:53:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:36+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-22T10:44:04+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:40+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-26T17:23:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-05-18T06:06:24+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:50+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-16T15:49:41+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-15T20:00:38+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:55+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-23T15:48:31+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-23T22:53:10+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-29T17:19:23+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.0.1\";s:7:\"updated\";s:25:\"2023-06-15T13:17:43+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}}s:13:\"_last_checked\";i:1692637463;}','no'),(6174,'_transient_timeout_acf_plugin_updates','1692810263','no'),(6175,'_transient_acf_plugin_updates','a:5:{s:7:\"plugins\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:11:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:5:\"6.2.0\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"6.3\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}s:8:\"requires\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"7.0\";s:12:\"release_date\";s:8:\"20230809\";}}s:9:\"no_update\";a:0:{}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"6.1.6\";}}','no'),(6177,'_site_transient_timeout_theme_roots','1692639263','no'),(6178,'_site_transient_theme_roots','a:5:{s:10:\"raw-energy\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(6180,'_site_transient_timeout_browser_15c2f6f9416d00cec8b4f729460293c0','1693242264','no'),(6181,'_site_transient_browser_15c2f6f9416d00cec8b4f729460293c0','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"115.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'),(6182,'_site_transient_timeout_php_check_38979a08dcd71638878b7b4419751271','1693242264','no'),(6183,'_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'),(6184,'_site_transient_timeout_community-events-0b5aaba9c9f1f8caab5887854f868414','1692680666','no'),(6185,'_site_transient_community-events-0b5aaba9c9f1f8caab5887854f868414','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"109.153.87.0\";}s:6:\"events\";a:4:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:38:\"WordPress Warwickshire Virtual Meetup \";s:3:\"url\";s:69:\"https://www.meetup.com/wordpress-warwickshire-meetup/events/295325208\";s:6:\"meetup\";s:29:\"WordPress Warwickshire Meetup\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/WordPress-Warwickshire-Meetup/\";s:4:\"date\";s:19:\"2023-08-28 19:00:00\";s:8:\"end_date\";s:19:\"2023-08-28 20:00:00\";s:20:\"start_unix_timestamp\";i:1693245600;s:18:\"end_unix_timestamp\";i:1693249200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:52.52000000000000312638803734444081783294677734375;s:9:\"longitude\";d:-1.4699999999999999733546474089962430298328399658203125;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:76:\"Docker for WordPress Demo, Zoom, WordPress Cambridge Mon Sept 11th 7pm UK \";s:3:\"url\";s:59:\"https://www.meetup.com/wordpress-cambridge/events/295387167\";s:6:\"meetup\";s:26:\"WordPress Cambridge Meetup\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wordpress-cambridge/\";s:4:\"date\";s:19:\"2023-09-11 19:00:00\";s:8:\"end_date\";s:19:\"2023-09-11 21:00:00\";s:20:\"start_unix_timestamp\";i:1694455200;s:18:\"end_unix_timestamp\";i:1694462400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:52.21000000000000085265128291212022304534912109375;s:9:\"longitude\";d:0.13000000000000000444089209850062616169452667236328125;}}i:2;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Whitley Bay\";s:3:\"url\";s:37:\"https://whitleybay.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-09-18 00:00:00\";s:8:\"end_date\";s:19:\"2023-09-18 00:00:00\";s:20:\"start_unix_timestamp\";i:1694991600;s:18:\"end_unix_timestamp\";i:1694991600;s:8:\"location\";a:4:{s:8:\"location\";s:11:\"Whitley Bay\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:55.04718530000000242807800532318651676177978515625;s:9:\"longitude\";d:-1.4460773000000000099163344202679581940174102783203125;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:39:\"WordPress Leeds Online - Monthly Meetup\";s:3:\"url\";s:55:\"https://www.meetup.com/wordpress-leeds/events/295151087\";s:6:\"meetup\";s:15:\"WordPress Leeds\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/WordPress-Leeds/\";s:4:\"date\";s:19:\"2023-09-26 17:30:00\";s:8:\"end_date\";s:19:\"2023-09-26 18:30:00\";s:20:\"start_unix_timestamp\";i:1695745800;s:18:\"end_unix_timestamp\";i:1695749400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:53.78999999999999914734871708787977695465087890625;s:9:\"longitude\";d:-1.5500000000000000444089209850062616169452667236328125;}}}}','no'),(6186,'_transient_timeout_feed_94d0b45cbbe5640144493b43a9e8f566','1692680666','no'),(6187,'_transient_feed_94d0b45cbbe5640144493b43a9e8f566','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:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Blog | WordPress.org English (UK)\";s:7:\"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:27:\"https://en-gb.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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Mar 2022 12:22: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-GB\";s: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.4-alpha-56420\";s: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:33:\"Blog | WordPress.org English (UK)\";s:7:\"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:27:\"https://en-gb.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: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:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.9.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://en-gb.wordpress.org/2022/03/11/wordpress-5-9-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://en-gb.wordpress.org/2022/03/11/wordpress-5-9-2-security-and-maintenance-release/#respond\";s: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, 11 Mar 2022 12:22: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: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://en-gb.wordpress.org/?p=1558\";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:383:\"WordPress 5.9.2 is now available! This security and maintenance release features one bug fix in addition to three security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.9.2 is a security and maintenance release. The next major release will be […]\";s: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:\"Mark Robson\";s: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:3104:\"\n<p><strong>WordPress 5.9.2 </strong>is now available!</p>\n\n\n\n<p>This security and maintenance release features<a href=\"https://core.trac.wordpress.org/ticket/54578\"> one bug fix</a> in addition to three security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.9.2 is a security and maintenance release. The next major release will be version <a href=\"https://make.wordpress.org/core/6-0/\">6.0</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.9.2.zip\">download WordPress 5.9.2 from WordPress.org</a>, or by visiting your Dashboard → Updates and clicking “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.9.2&group=component&col=id&col=summary&col=owner&col=type&col=status&col=priority&col=milestone&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-9-2/\">version 5.9.2 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.9.2 release was led by <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, with the help of <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> on package updates, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> on mission control, and <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> on backport commits.</p>\n\n\n\n<p>In addition to the release squad members mentioned above, thank you to everyone who helped make WordPress 5.9.2 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya/\">Tonya Mork</a>, and <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>.</p>\n\n\n\n<p><em>Props <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@davidbaumwald</a> and <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a> for peer reviewing.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://en-gb.wordpress.org/2022/03/11/wordpress-5-9-2-security-and-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:73:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.9.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://en-gb.wordpress.org/2022/02/22/wordpress-5-9-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://en-gb.wordpress.org/2022/02/22/wordpress-5-9-1-maintenance-release/#respond\";s: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, 22 Feb 2022 16:06:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://en-gb.wordpress.org/?p=1554\";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:402:\"WordPress 5.9.1 is now available! This maintenance release features 82 bug fixes in both Core and the block editor. WordPress 5.9.1 is a short-cycle maintenance release. The next major release will be version 6.0. You can download WordPress 5.9.1 from WordPress.org, or by visiting your Dashboard → Updates and clicking “Update Now”. If you have sites that support automatic […]\";s: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:\"Mark Robson\";s: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:7815:\"\n<p>WordPress 5.9.1 is now available!</p>\n\n\n\n<p>This maintenance release features 82 bug fixes in both Core and the block editor.</p>\n\n\n\n<p>WordPress 5.9.1 is a short-cycle maintenance release. The next major release will be version <a href=\"https://make.wordpress.org/core/6.0/\">6.0</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.9.1.zip\">download WordPress 5.9.1 from WordPress.org</a>, or by visiting your Dashboard → Updates and clicking “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://make.wordpress.org/core/2022/02/16/wordpress-5-9-1-rc-1/\">full list of both Trac and GitHub changes in the release candidate post</a>, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-9-1/\">version 5.9.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.9.1 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jb Audras</a> and <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>.</p>\n\n\n\n<p>Special props to <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a> for running mission control.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.9.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/madeinua/\">ArteMa</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/blogaid/\">BlogAid</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/azouamauriac/\">Flinim Asso</a>, <a href=\"https://profiles.wordpress.org/gadhiyaravi/\">gadhiyaravi</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/ianatkins/\">ianatkins</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/itsamoreh/\">itsamoreh</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</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/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a>, <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/malinevskiy/\">Pavlo</a>, <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar Ratković</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/mahype/\">Sven Wagener</a>, <a href=\"https://profiles.wordpress.org/staatic/\">Team Staatic</a>, <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/antonynz/\">wpcharged</a>, <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a>, <a href=\"https://profiles.wordpress.org/dolphingg/\">Yunus Ertuğrul</a>, and <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a>.</p>\n\n\n\n<p>Thanks to <a href=\"https://profiles.wordpress.org/estelaris/\">@estelaris</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">@pbiron</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">@ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/bph/\">@bph</a>, <a href=\"https://profiles.wordpress.org/abhanonstopnewsuk/\">@abhanonstopnewsuk</a>, and <a href=\"https://profiles.wordpress.org/threadi/\">@threadi</a> for their help to test the release package.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://en-gb.wordpress.org/2022/02/22/wordpress-5-9-1-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:73:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"WordPress 5.9 “Joséphine”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://en-gb.wordpress.org/2022/01/26/wordpress-5-9-josephine/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://en-gb.wordpress.org/2022/01/26/wordpress-5-9-josephine/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jan 2022 12:34:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://en-gb.wordpress.org/?p=1542\";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:413:\"Welcome to Joséphine! Introducing 5.9, Joséphine. Named in honour of acclaimed international jazz singer Joséphine Baker, this latest, most versatile WordPress release is here: download it or update it directly from your dashboard.  As a lifelong civil rights campaigner, Joséphine Baker believed that all people could live in harmony together, just as different instruments in a jazz […]\";s: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:\"Mark Robson\";s: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:59441:\"\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=632%2C428&ssl=1\" alt=\"\" class=\"wp-image-12139\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"welcome-to-josephine\">Welcome to Joséphine!</h2>\n\n\n\n<p>Introducing 5.9, Joséphine. Named in honour of acclaimed international jazz singer Joséphine Baker, this latest, most versatile WordPress release is here: <a href=\"https://wordpress.org/download/\">download it</a> or update it directly from your dashboard. <br><br>As a lifelong civil rights campaigner, Joséphine Baker believed that all people could live in harmony together, just as different instruments in a jazz band blend together to make a whole piece. Turn on a playlist from your favourite music service and enjoy her famous renditions of “You are the greatest love”, “Sans Amour”, and “Love is a Dreamer”, as you discover all the features of this brand-new WordPress release. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"full-site-editing-is-here\">Full site editing is here</h2>\n\n\n\n<p>It puts you in control of your whole site, right in the WordPress Admin.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12101\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"say-hello-to-twenty-twenty-two\">Say hello to Twenty Twenty-Two</h3>\n\n\n\n<p>And say hello to the first default block theme in the history of WordPress. This is more than just a new default theme. It’s a brand-new way to work with WordPress themes.</p>\n\n\n\n<p><a href=\"https://wordpress.org/support/article/block-themes/\">Block themes</a> put a wide array of visual choices directly in your hands, from colour schemes and font combinations to page templates and image filters, all from the <a href=\"https://wordpress.org/support/article/site-editor/\">Site Editor</a>. So in one place, you can give Twenty Twenty-Two the same look and feel as your organisation’s other materials – or take your site’s look in another direction.</p>\n\n\n\n<p>You already have the Twenty Twenty-Two theme – it came installed with WordPress 5.9. You will find it with your other installed themes.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12102\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"your-personal-paintbox-awaits\">Your personal paintbox awaits</h3>\n\n\n\n<p>Twenty Twenty-Two is not the only theme built for full site editing. More block themes are in the Themes directory, and the number will grow. </p>\n\n\n\n<p>When you use any of those new themes, you no longer need the Customiser. Instead, you have all the power of the Styles interface inside the Site Editor. Just as in Twenty Twenty-Two, you build your site’s look and feel there, with the tools you need for the job in a fluid interface that practically comes alive in your hands.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12103\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"the-navigation-block\">The Navigation block</h3>\n\n\n\n<p>Blocks come to site navigation, the heart of user experience.</p>\n\n\n\n<p>The new Navigation block gives you the power to choose: an always-on responsive menu or one that adapts to your user’s screen size. And your choices are remembered! In 5.9, the block saves menus as custom post types, which get saved to the database.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"more-improvements-and-updates\">More improvements and updates</h2>\n\n\n\n<p>Do you love to blog? New tweaks to the publishing flow help you say more, faster.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12105\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"better-block-controls\">Better block controls</h3>\n\n\n\n<p>WordPress 5.9 features new typography tools, flexible layout controls, and finer control of details like spacing, borders, and more – to help you get not just the look, but the polish that says you care about details.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12104\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"the-power-of-patterns\">The power of patterns</h3>\n\n\n\n<p>The WordPress Pattern Directory is the home of a wide range of block patterns built to save you time and add to your site’s functionality. And you can edit them as you see fit. Need something different in the header or footer for your theme? Swap it out with a new one in a few clicks.</p>\n\n\n\n<p>With a nearly full-screen view that draws you in to see fine details, the Pattern Explorer makes it easy to compare patterns and choose the one your users need.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12106\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"a-revamped-list-view\">A revamped List View</h3>\n\n\n\n<p>In 5.9, the List View lets you drag and drop your content exactly where you want it. Managing complex documents is easier, too: simple controls let you expand and collapse sections as you build your site – and add HTML anchors to your blocks to help users get around the page.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12107\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"a-better-gallery-block\">A better Gallery block</h3>\n\n\n\n<p>Treat every image in a Gallery Block the same way you would treat it in the Image Block.</p>\n\n\n\n<p>Style every image in your gallery differently, or make them all the same, except for one or two. Or change the layout with drag-and-drop.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wordpress-5-9-for-developers\">WordPress 5.9 for developers</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"theme-json-for-child-themes\">Theme.json for child themes</h3>\n\n\n\n<p>In 5.9, theme.json supports child themes. That means your users can build a child theme right in the WordPress Admin, without writing a single line of code. </p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/\">This dev note</a> has all the details. Take a look!</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"block-level-locking\">Block-level locking</h3>\n\n\n\n<p>Now you can lock any block (or a few of them) in a pattern, just by <a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">adding a lock attribute to its settings in block.json</a> – leaving the rest of the pattern free for users to adapt to their content. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"multiple-style-sheets-in-a-block\">Multiple style sheets in a block</h3>\n\n\n\n<p>Now you can register more than one style sheet per block, which lets a given block load only the styles its markup requests, and not a whole sheet. Read the details in this <a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\">dev note</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"a-refactored-gallery-block\">A refactored Gallery Block</h3>\n\n\n\n<p>The changes to the Gallery Block listed above are the result of a near-complete refactoring. Have you built a plugin or theme on the Gallery Block functionality? Be sure you read this <a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">dev note</a>. It tells you what you need to do for compatibility.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"learn-more-about-the-new-features-in-5-9\">Learn more about the new features in 5.9</h3>\n\n\n\n<p>Want to dive into 5.9 but don’t know where to start? Check out this free course about <a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\">Simple Site Design</a> from <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. There are a variety of learning materials including short how-to video tutorials and resources on new features in WordPress 5.9, with much more planned.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"check-out-the-field-guide-for-more\">Check out the Field Guide for more!</h3>\n\n\n\n<p>Check out the latest version of the WordPress Field Guide. It has lots of useful information with links to detailed developer notes to support you building in WordPress for everyone you serve. <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">WordPress 5.9 Field Guide</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-squad\"><strong>The Squad</strong></h2>\n\n\n\n<p>The WordPress 5.9 release was led by <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, and supported by this highly enthusiastic release squad:</p>\n\n\n\n<ul><li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li><li>Core Tech and Release Coordinator: <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a></li><li>Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a> and <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a></li><li>Editor Tech: <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> and <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a></li><li>Theme Leads: <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> and <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a></li><li>Technical Writer: <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a></li><li>Documentation Leads: <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> and <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a></li><li>Marketing and Communications Leads: <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, and <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a></li><li>Test Leads: <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> and <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a></li></ul>\n\n\n\n<p>WordPress 5.9 also reflects the hard work of 624 generous volunteer contributors. Collaboration occurred on <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.9&group=component&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">370 tickets on Trac</a> and more than <a href=\"https://github.com/WordPress/gutenberg/compare/v10.8.0...v11.9.0\">1900 pull requests on GitHub</a>.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a>, <a href=\"https://profiles.wordpress.org/abesell132/\">abesell132</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/wpmudev-support8/\">Adam – WPMU DEV Support</a>, <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a>, <a href=\"https://profiles.wordpress.org/adam3128/\">Adam Morgan</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/aadilali/\">Adil Ali</a>, <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a>, <a href=\"https://profiles.wordpress.org/aezazshekh/\">Aezaz Shekh</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"https://profiles.wordpress.org/ajotka/\">ajotka</a>, <a href=\"https://profiles.wordpress.org/soniakash/\">Akash Soni</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexvorn2/\">Alexandru Vornicescu</a>, <a href=\"https://profiles.wordpress.org/alexeydemidov/\">alexeydemidov</a>, <a href=\"https://profiles.wordpress.org/alexislloyd/\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a>, <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a>, <a href=\"https://profiles.wordpress.org/almendron/\">almendron</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/andy-schmidt/\">Andy Schmidt</a>, <a href=\"https://profiles.wordpress.org/andynick/\">andynick</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/anjanavasan/\">Anjana Vasan</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/anthonyeden/\">Anthony Eden</a>, <a href=\"https://profiles.wordpress.org/paranoia1906/\">Anthony Ledesma</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/arena/\">arena</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a>, <a href=\"https://profiles.wordpress.org/ashfame/\">Ashfame</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/baelx/\">baelx</a>, <a href=\"https://profiles.wordpress.org/allerune/\">Bartlomiej</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/beaulebens/\">Beau Lebens</a>, <a href=\"https://profiles.wordpress.org/bedas/\">Beda</a>, <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a>, <a href=\"https://profiles.wordpress.org/benitolopez/\">benitolopez</a>, <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a>, <a href=\"https://profiles.wordpress.org/benjamingosset/\">Benjamin Gosset</a>, <a href=\"https://profiles.wordpress.org/benjaminanakena/\">benjamin.anakena</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bgardner/\">bgardner</a>, <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a>, <a href=\"https://profiles.wordpress.org/binarykitten/\">BinaryKitten</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a>, <a href=\"https://profiles.wordpress.org/bradparbs/\">Brad Parbs</a>, <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bravokeyl/\">bravokeyl</a>, <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a>, <a href=\"https://profiles.wordpress.org/rzen/\">Brian Richards</a>, <a href=\"https://profiles.wordpress.org/bronsonquick/\">bronsonquick</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/brylie/\">Brylie Christopher Oxley</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calebwoodbridge/\">calebwoodbridge</a>, <a href=\"https://profiles.wordpress.org/carepsules/\">carepsules</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/vefusion/\">Carlos Garcia</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/cdyerkes/\">cdyerkes</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">Ceyhun Ozugur</a>, <a href=\"https://profiles.wordpress.org/shireling/\">Chad</a>, <a href=\"https://profiles.wordpress.org/chiaki/\">Chiaki</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/cklosows/\">Chris Klosowski</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/christianztamayo/\">Christian Tamayo</a>, <a href=\"https://profiles.wordpress.org/amethystanswers/\">Christina Workman</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/clucasrowlands/\">clucasrowlands</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/callye/\">Collieth Clarke</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreyw/\">Corey</a>, <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a>, <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a>, <a href=\"https://profiles.wordpress.org/craigfrancis/\">craigfrancis</a>, <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">critterverse</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">Dávid Szabó</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danielpost/\">Daniel Post</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/chthnc/\">Daniel Shaw</a>, <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/daschmi/\">Daschmi</a>, <a href=\"https://profiles.wordpress.org/datagutten/\">datagutten</a>, <a href=\"https://profiles.wordpress.org/datainterlock/\">datainterlock</a>, <a href=\"https://profiles.wordpress.org/davecpage/\">Dave Page</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidkryzaniak/\">David Kryzaniak</a>, <a href=\"https://profiles.wordpress.org/davidmosterd/\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/daviedr/\">David Rozando</a>, <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a>, <a href=\"https://profiles.wordpress.org/devutpol/\">Deb Nath Utpol</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a>, <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dhusakovic/\">dhusakovic</a>, <a href=\"https://profiles.wordpress.org/diedeexterkate/\">DiedeExterkate</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dlt101/\">dlt101</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/codezen8/\">Donna Botti</a>, <a href=\"https://profiles.wordpress.org/dontgo2sleep/\">dontgo2sleep</a>, <a href=\"https://profiles.wordpress.org/dougwollison/\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/dpegasusm/\">dpegasusm</a>, <a href=\"https://profiles.wordpress.org/raubvogel/\">Dr. Ronny Harbich</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drosmog/\">drosmog</a>, <a href=\"https://profiles.wordpress.org/dustinrue/\">dustinrue</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">ecotechie</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/ekojr/\">EkoJR</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a>, <a href=\"https://profiles.wordpress.org/empatogen/\">empatogen</a>, <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/erayalakese/\">erayalakese</a>, <a href=\"https://profiles.wordpress.org/teachlynx/\">Eric Malalel</a>, <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/etoledo/\">etoledo</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a>, <a href=\"https://profiles.wordpress.org/fedepia/\">fedepia</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/felipeloureirosantos/\">Felipe Santos</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/fpcsjames/\">FPCSJames</a>, <a href=\"https://profiles.wordpress.org/piewp/\">fperdaan</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/fcolombo/\">Francesco</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gazchap/\">gazchap</a>, <a href=\"https://profiles.wordpress.org/generosus/\">generosus</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a>, <a href=\"https://profiles.wordpress.org/gilbitron/\">Gilbert Pellegrom</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/goldsounds/\">goldsounds</a>, <a href=\"https://profiles.wordpress.org/gkloveweb/\">Govind</a>, <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a>, <a href=\"https://profiles.wordpress.org/gregrickaby/\">Greg Rickaby</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/hansjovisyoast/\">Hans-Christiaan Braun</a>, <a href=\"https://profiles.wordpress.org/haosun/\">haosun</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herbmiller/\">herbmiller</a>, <a href=\"https://profiles.wordpress.org/hermpheus/\">Herm Martini</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hilayt24/\">hilayt24</a>, <a href=\"https://profiles.wordpress.org/hirofumi2012/\">hirofumi2012</a>, <a href=\"https://profiles.wordpress.org/hitendra-chopda/\">Hitendra Chopda</a>, <a href=\"https://profiles.wordpress.org/h71/\">Hossein Farahani</a>, <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a>, <a href=\"https://profiles.wordpress.org/hudson-atwell/\">Hudson Atwell</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianhayes94/\">ianhayes94</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a>, <a href=\"https://profiles.wordpress.org/ibenic/\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/ilovecats7/\">ilovecats7</a>, <a href=\"https://profiles.wordpress.org/infected/\">infected</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/iluy/\">Isaac</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismaeld/\">ismaeld</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackreichert/\">Jack Reichert</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jakubtyrcha/\">jakub.tyrcha</a>, <a href=\"https://profiles.wordpress.org/mcjambi/\">Jam Viet</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a>, <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a>, <a href=\"https://profiles.wordpress.org/evermail/\">Jason R. Johnston</a>, <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a>, <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a>, <a href=\"https://profiles.wordpress.org/jayupadhyay01/\">Jay Upadhyay</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/teucrium/\">Jean-Philippe</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">Jeremy Scott</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/amieiro/\">Jesús Amieiro</a>, <a href=\"https://profiles.wordpress.org/engelen/\">Jesper van Engelen</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/jigneshnakrani/\">Jignesh Nakrani</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joegasper/\">joegasper</a>, <a href=\"https://profiles.wordpress.org/joelcj91/\">Joel James</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnillo/\">John Espiritu</a>, <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/zenithcity/\">john zenith</a>, <a href=\"https://profiles.wordpress.org/lwangaman/\">JohnRDOrazio (CLPTE)</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a>, <a href=\"https://profiles.wordpress.org/josephdickson/\">Joseph Dickson</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/juanruitina/\">Juan Ruitiña</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/juhise/\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/junaidbhura/\">Junaid Bhura</a>, <a href=\"https://profiles.wordpress.org/nukaga/\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/justindocanto/\">Justin DoCanto</a>, <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/kallookoo/\">kallookoo</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/kaneva/\">kaneva</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/keoshi/\">keoshi</a>, <a href=\"https://profiles.wordpress.org/sourav926/\">Keramot UL Islam</a>, <a href=\"https://profiles.wordpress.org/kingkero/\">kero</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a>, <a href=\"https://profiles.wordpress.org/keyur5/\">keyur5</a>, <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/vdwijngaert/\">Koen Van den Wijngaert</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/kurudrive/\">kurudrive</a>, <a href=\"https://profiles.wordpress.org/kwisatz/\">kwisatz</a>, <a href=\"https://profiles.wordpress.org/devnel/\">Kyle Nel</a>, <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a>, <a href=\"https://profiles.wordpress.org/lalitjalandhar/\">lalitjalandhar</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a>, <a href=\"https://profiles.wordpress.org/liammitchell/\">liammitchell</a>, <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/webaxones/\">Loïc Antignac</a>, <a href=\"https://profiles.wordpress.org/loranrendel/\">Loran A. Rendel</a>, <a href=\"https://profiles.wordpress.org/karpstrucking/\">Lucas Karpiuk</a>, <a href=\"https://profiles.wordpress.org/lucasw89/\">lucasw89</a>, <a href=\"https://profiles.wordpress.org/lucatume/\">lucatume</a>, <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/luovalabs/\">luovalabs</a>, <a href=\"https://profiles.wordpress.org/lynk/\">lynk</a>, <a href=\"https://profiles.wordpress.org/asif2bd/\">M Asif Rahman</a>, <a href=\"https://profiles.wordpress.org/gorby31/\">Madalin Gorbanescu</a>, <a href=\"https://profiles.wordpress.org/aetherunbound/\">Madison</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a>, <a href=\"https://profiles.wordpress.org/malae/\">Malae</a>, <a href=\"https://profiles.wordpress.org/malthert/\">malthert</a>, <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>, <a href=\"https://profiles.wordpress.org/manishamakhija/\">Manisha Makhija</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattoakley/\">mattoakley</a>, <a href=\"https://profiles.wordpress.org/wppunk/\">Max</a>, <a href=\"https://profiles.wordpress.org/max-dayala/\">MaxD</a>, <a href=\"https://profiles.wordpress.org/maximeculea/\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mclaurent/\">mclaurent</a>, <a href=\"https://profiles.wordpress.org/medusor/\">MEDUSOR</a>, <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/wpscholar/\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/michelwppi/\">Michel – xiligroup dev</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mikaelmayer/\">mikaelmayer</a>, <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley (a11n)</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">mirka</a>, <a href=\"https://profiles.wordpress.org/mjaschen/\">mjaschen</a>, <a href=\"https://profiles.wordpress.org/mjulian7/\">mjulian7</a>, <a href=\"https://profiles.wordpress.org/mmxxi/\">mmxxi</a>, <a href=\"https://profiles.wordpress.org/moch11/\">moch11</a>, <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a>, <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi</a>, <a href=\"https://profiles.wordpress.org/computerguru/\">mqudsi</a>, <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mtoensing/\">mtoensing</a>, <a href=\"https://profiles.wordpress.org/wparslan/\">Muhammad Arslan</a>, <a href=\"https://profiles.wordpress.org/muhammadfaizanhaidar/\">Muhammad Faizan Haidar</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/musabshakeel/\">Musab Shakeel</a>, <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/natewr/\">NateWr</a>, <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/nettsite/\">NettSite</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nickcernis/\">nickcernis</a>, <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nlpro/\">nlpro</a>, <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a>, <a href=\"https://profiles.wordpress.org/ellenbauer/\">Outzen Larkin</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a>, <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/iaaxpage/\">page-carbajal</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pankajmohale/\">Pankaj Mohale</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patrick-b/\">Patrick B</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/rixeo/\">Paul Kevin</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/psrpinto/\">Paulo Pinto</a>, <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/powerbuoy/\">powerbuoy</a>, <a href=\"https://profiles.wordpress.org/praem90/\">praem90</a>, <a href=\"https://profiles.wordpress.org/promz/\">Pramod Jodhani</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/procodewp/\">procodewp</a>, <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a>, <a href=\"https://profiles.wordpress.org/psufan/\">psufan</a>, <a href=\"https://profiles.wordpress.org/pwtyler/\">pwtyler</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a>, <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a>, <a href=\"https://profiles.wordpress.org/ralucastn/\">ralucastn</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a>, <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/richardfoley/\">Richard Foley</a>, <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a>, <a href=\"https://profiles.wordpress.org/rickcurran/\">Rick Curran</a>, <a href=\"https://profiles.wordpress.org/rbrishabh/\">Rishabh Budhiraja</a>, <a href=\"https://profiles.wordpress.org/saju4wordpress/\">Riyadh Ahmed</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/robertghetau/\">robertght</a>, <a href=\"https://profiles.wordpress.org/robtarr/\">robtarr</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/rohan013/\">Rohan Rawat</a>, <a href=\"https://profiles.wordpress.org/rhnsharma/\">Rohan Sharma</a>, <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a>, <a href=\"https://profiles.wordpress.org/rkohilakis/\">Roxy Kohilakis</a>, <a href=\"https://profiles.wordpress.org/russhylov/\">Ruslan</a>, <a href=\"https://profiles.wordpress.org/rviscomi/\">rviscomi</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/skierpage/\">S Page</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/sabbirshouvo/\">Sabbir Hasan</a>, <a href=\"https://profiles.wordpress.org/sabrib/\">Sabri Bouchaala</a>, <a href=\"https://profiles.wordpress.org/zeo/\">Safirul Alredha</a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sandipmondal/\">Sandip Mondal – a11n</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a>, <a href=\"https://profiles.wordpress.org/savicmarko1985/\">savicmarko1985</a>, <a href=\"https://profiles.wordpress.org/sayedulsayem/\">Sayedul Sayem</a>, <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a>, <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanmcmillan/\">Sean McMillan</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/omaeyusuke/\">Segayuu</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergiocinos/\">Sergio Cinos</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/shaharyar10/\">Shaharyar Afzal</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shohag121/\">Shazahanul Islam Shohag</a>, <a href=\"https://profiles.wordpress.org/shimon246/\">shimon246</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shivapoudel/\">Shiva Poudel</a>, <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth</a>, <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a>, <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/simonhammes/\">simonhammes</a>, <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a>, <a href=\"https://profiles.wordpress.org/sjlevy/\">sjlevy</a>, <a href=\"https://profiles.wordpress.org/skunkbad/\">skunkbad</a>, <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/sourovroy/\">Sourov Roy</a>, <a href=\"https://profiles.wordpress.org/spytzo/\">spytzo</a>, <a href=\"https://profiles.wordpress.org/ssergei/\">ssergei</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/strider72/\">Stephen Rider</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/stevegs/\">stevegs</a>, <a href=\"https://profiles.wordpress.org/stormrockwell/\">Storm Rockwell</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/sparklingrobots/\">Tara King</a>, <a href=\"https://profiles.wordpress.org/tareiking/\">Tarei King</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Tetsuaki Hamano</a>, <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a>, <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a>, <a href=\"https://profiles.wordpress.org/thulshof/\">Thijs Hulshof</a>, <a href=\"https://profiles.wordpress.org/thimalw/\">Thimal Wickremage</a>, <a href=\"https://profiles.wordpress.org/thisiswilliam/\">thisiswilliam</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/timlappe/\">timlappe</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/titsmaker/\">titsmaker</a>, <a href=\"https://profiles.wordpress.org/tjcafferkey/\">tjcafferkey</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tomalec/\">Tomek</a>, <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a>, <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a>, <a href=\"https://profiles.wordpress.org/ttahmouch/\">Tony Tahmouch</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/sierratr/\">Tracy</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/tubys/\">tubys</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/umesh84/\">umesh84</a>, <a href=\"https://profiles.wordpress.org/webulous/\">Venkat Raj</a>, <a href=\"https://profiles.wordpress.org/versusbassz/\">versusbassz</a>, <a href=\"https://profiles.wordpress.org/bartoszgrzesik/\">verybg</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a>, <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a>, <a href=\"https://profiles.wordpress.org/vishitshah/\">Vishit Shah</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/vondelphia/\">Vondelphia.com</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/west7/\">Wes Theron</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a>, <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wojsmol/\">wojsmol</a>, <a href=\"https://profiles.wordpress.org/woodyhayday/\">woodyhayday</a>, <a href=\"https://profiles.wordpress.org/wp_kc/\">wp_kc</a>, <a href=\"https://profiles.wordpress.org/wpnomad/\">wpnomad a11n</a>, <a href=\"https://profiles.wordpress.org/wpweaver/\">wpweaver</a>, <a href=\"https://profiles.wordpress.org/yagniksangani/\">Yagnik Sangani</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, and <a href=\"https://profiles.wordpress.org/zoiec/\">zoiec</a>.</p>\n\n\n\n<p>By release day, 71 locales had translated 90 percent or more of WordPress 5.9 into their language. Community translators are hard at work ensuring more translations are on their way. Thank you to everyone who helps to make WordPress available in 205 languages.</p>\n\n\n\n<p>Many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They help to answer questions from people across the world. The success of releases, from the first one in 2003, owes much to the efforts of the support contributors. </p>\n\n\n\n<p><em>If contributing to WordPress appeals to you, it’s easy to learn more and get involved. Discover the different teams that come together on the <a href=\"https://make.wordpress.org/\">Make WordPress</a> website and find out the latest plans on the <a href=\"https://make.wordpress.org/core/\">core development blog</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://en-gb.wordpress.org/2022/01/26/wordpress-5-9-josephine/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.8.3 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:72:\"https://en-gb.wordpress.org/2022/01/07/wordpress-5-8-3-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://en-gb.wordpress.org/2022/01/07/wordpress-5-8-3-security-release/#respond\";s: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, 07 Jan 2022 11:43:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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://en-gb.wordpress.org/?p=1512\";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:369:\"This security release features four security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.8.3 is a short-cycle security release. The next major release will be version 5.9, which is already in the Release Candidate stage. You can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Mark Robson\";s: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:3778:\"\n<p>This security release features four security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.3 is a short-cycle security release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>, which is already in the Release Candidate stage.</p>\n\n\n\n<p>You can update to WordPress 5.8.3 by downloading from WordPress.org or by visiting your Dashboard → Updates and clicking “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"security-updates\">Security Updates</h3>\n\n\n\n<p>Four security issues affect WordPress versions between 3.7 and 5.8. If you haven’t yet updated to 5.8, all WordPress versions since 3.7 have also been updated to fix the following security issues (except where noted otherwise):</p>\n\n\n\n<ul><li>Props to Karim El Ouerghemmi and Simon Scannell of <a href=\"https://www.sonarsource.com/\">SonarSource</a> for disclosing an issue with stored XSS through post slugs.</li><li>Props to Simon Scannell of <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an issue with Object injection in some multisite installations.</li><li>Props to ngocnb and khuyenn from <a href=\"https://giaohangtietkiem.vn/\">GiaoHangTietKiem JSC</a> for working with <a href=\"https://www.zerodayinitiative.com/\">Trend Micro Zero Day Initiative</a> on reporting a SQL injection vulnerability in WP_Query.</li><li>Props to Ben Bidner from the WordPress security team for reporting a SQL injection vulnerability in WP_Meta_Query (only relevant to versions 4.1-5.8). </li></ul>\n\n\n\n<p>Thank you to all of the reporters above for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked. Thank you to the members of the WordPress security team for implementing these fixes in WordPress.</p>\n\n\n\n<p>For more information, check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-3/\">5.8.3 HelpHub documentation page</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"thanks-and-props\">Thanks and props!</h3>\n\n\n\n<p>The 5.8.3 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a> and <a href=\"https://profiles.wordpress.org/circlecube/\">@circlecube</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.3 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://en-gb.wordpress.org/2022/01/07/wordpress-5-8-3-security-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.8.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://en-gb.wordpress.org/2021/11/13/wordpress-5-8-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://en-gb.wordpress.org/2021/11/13/wordpress-5-8-2-security-and-maintenance-release/#respond\";s: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 Nov 2021 11:13:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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://en-gb.wordpress.org/?p=1499\";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:430:\"WordPress 5.8.2 is now available! This security and maintenance release features 2 bug fixes in addition to 1 security fix. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.2 have also been updated. WordPress 5.8.2 is a small focus security and maintenance release. The next major release will be version 5.9. […]\";s: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:\"Mark Robson\";s: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:2763:\"\n<p><strong>WordPress 5.8.2 </strong>is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?id=54129%2C54323%2C54207&milestone=5.8.2&group=component&col=id&col=summary&col=owner&col=type&col=status&col=priority&col=milestone&order=priority\">2 bug</a> fixes in addition to <a href=\"https://core.trac.wordpress.org/ticket/54207\">1 security</a> fix. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 5.2 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.2 is a small focus security and maintenance release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>.</p>\n\n\n\n<p>You can download WordPress 5.8.2 by downloading from WordPress.org, or by visiting your Dashboard → Updates and clicking “Update Now”. If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?id=54129%2C54323%2C54207&milestone=5.8.2&group=component&col=id&col=summary&col=owner&col=type&col=status&col=priority&col=milestone&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-2/\">version 5.8.2 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.8.2 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> and <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>.</p>\n\n\n\n<p>In addition to the release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.2 happen: <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shimon246/\">shimon246</a>, and <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://en-gb.wordpress.org/2021/11/13/wordpress-5-8-2-security-and-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:73:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Introducing Twenty Twenty-Two\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://en-gb.wordpress.org/2021/10/06/introducing-twenty-twenty-two/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://en-gb.wordpress.org/2021/10/06/introducing-twenty-twenty-two/#respond\";s: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 Oct 2021 19:08:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"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:35:\"https://en-gb.wordpress.org/?p=1496\";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:236:\"Well, here we are again, it’s that time of the year when we start thinking about the next default WordPress theme. WordPress 5.9 will launch with a new default theme: Twenty Twenty-Two. Find out more in the official announcement 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Mark Robson\";s: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:353:\"\n<p>Well, here we are again, it’s that time of the year when we start thinking about the next default WordPress theme.</p>\n\n\n\n<p>WordPress 5.9 will launch with a new default theme: Twenty Twenty-Two.</p>\n\n\n\n<p>Find out more in <a href=\"https://make.wordpress.org/core/2021/10/06/introducing-twenty-twenty-two/\">the official announcement post</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://en-gb.wordpress.org/2021/10/06/introducing-twenty-twenty-two/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.8.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://en-gb.wordpress.org/2021/09/09/wordpress-5-8-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://en-gb.wordpress.org/2021/09/09/wordpress-5-8-1-security-and-maintenance-release/#respond\";s: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, 09 Sep 2021 11:46:43 +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://en-gb.wordpress.org/?p=1490\";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:405:\"WordPress 5.8.1 is now available! This security and maintenance release features 60 bug fixes in addition to 3 security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.4 have also been updated. WordPress 5.8.1 is a short-cycle security and maintenance release. The next major release will be […]\";s: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:\"Mark Robson\";s: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:9370:\"\n<p>WordPress 5.8.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.8.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">60 bug</a> <a href=\"https://github.com/WordPress/gutenberg/pull/34393\">fixes</a> in addition to 3 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 5.4 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.1 is a short-cycle security and maintenance release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>.</p>\n\n\n\n<p>You can download WordPress 5.8.1 by downloading from WordPress.org, or by visiting your Dashboard → Updates and clicking “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Security Updates</strong></h3>\n\n\n\n<p>Three security issues affect WordPress versions between 5.4 and 5.8. If you haven’t yet updated to 5.8, all WordPress versions since 5.4 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Props to <a href=\"https://profiles.wordpress.org/mdawaffe/\">@mdawaffe</a>, a member of the WordPress Security Team, for their work fixing a data exposure vulnerability within the REST API.</li><li>Props to Michał Bentkowski of Securitum for reporting a XSS vulnerability in the block editor.</li><li>The Lodash library has been updated to version 4.17.21 in each branch to incorporate upstream security fixes.</li></ul>\n\n\n\n<p>In addition to these issues, the security team would like to thank the following people for reporting vulnerabilities during the WordPress 5.8 beta testing period, allowing them to be fixed prior to release:</p>\n\n\n\n<ul><li>Props to <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://evanricafort.com/\">Evan Ricafort</a> for reporting a XSS vulnerability in the block editor discovered during the 5.8 release’s beta period.</li><li>Props to <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a> for reporting a privilege escalation issue in the block editor.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the WordPress security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.8.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-1/\">version 5.8.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks and props!</h2>\n\n\n\n<p>The 5.8.1 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> and <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.1 happen: <a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</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/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a>, <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a>, <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/moch11/\">moch11</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a>, <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a>, and <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://en-gb.wordpress.org/2021/09/09/wordpress-5-8-1-security-and-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:73:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 5.8 “Tatum”\";s:7:\"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://en-gb.wordpress.org/2021/07/24/wordpress-5-8-tatum/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://en-gb.wordpress.org/2021/07/24/wordpress-5-8-tatum/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 24 Jul 2021 11:42:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://en-gb.wordpress.org/?p=1483\";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:374:\"Introducing 5.8 “Tatum”, our latest and greatest release. Named in honour of Art Tatum, the legendary jazz pianist. His formidable technique and willingness to push boundaries inspired musicians and changed what people thought could be done. So fire up your music service of choice and enjoy Tatum’s famous recordings of ‘Tea for Two’, ‘Tiger Rag’, […]\";s: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:\"Mark Robson\";s: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:48676:\"\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2021/07/5x8-Album-1-1024x683.jpg\" alt=\"\" class=\"wp-image-11042\" /></figure>\n\n\n\n<p>Introducing 5.8 “Tatum”, our latest and greatest release. Named in honour of Art Tatum, the legendary jazz pianist. His formidable technique and willingness to push boundaries inspired musicians and changed what people thought could be done. </p>\n\n\n\n<p>So fire up your music service of choice and enjoy Tatum’s famous recordings of ‘Tea for Two’, ‘Tiger Rag’, ‘Begin the Beguine’, and ‘Night and Day’ as you read about what the latest WordPress version brings to you.</p>\n\n\n\n<h2 class=\"has-text-align-left wp-block-heading\">Three Essential Powerhouses</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Manage Widgets with Blocks</h3>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2021/07/about-widgets-blocks-1024x768.png\" alt=\"\" class=\"wp-image-10985\" /></figure></div>\n\n\n\n<p>After months of hard work, the power of blocks has come to both the Block Widgets Editor and the Customiser. Now you can add blocks both in widget areas across your site and with live preview through the Customiser. This opens up new possibilities to create content: from no-code mini layouts to the vast library of core and third-party blocks. For our developers, you can find more details in the <a href=\"https://make.wordpress.org/core/2021/06/29/block-based-widgets-editor-in-wordpress-5-8/\">Widgets dev note</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Display Posts with New Blocks and Patterns</h3>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2021/07/about-query-loop-1024x811.png\" alt=\"\" class=\"wp-image-10986\" /></figure></div>\n\n\n\n<p>The Query Loop Block makes it possible to display posts based on specified parameters; like a PHP loop without the code. Easily display posts from a specific category, to do things like create a portfolio or a page full of your favourite recipes. Think of it as a more complex and powerful Latest Posts Block! Plus, pattern suggestions make it easier than ever to create a list of posts with the design you want.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Edit the Templates Around Posts</h3>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2021/07/about-template-1024x666.png\" alt=\"\" class=\"wp-image-10987\" /></figure></div>\n\n\n\n<p>You can use the familiar block editor to edit templates that hold your content – simply activate a block theme or a theme that has opted in for this feature. Switch from editing your posts to editing your pages and back again, all while using a familiar block editor. There are more than 20 new blocks available within compatible themes. Read more about this feature and how to experiment with it in the release notes.</p>\n\n\n\n<h2 class=\"has-text-align-left wp-block-heading\">Three Workflow Helpers</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Overview of the Page Structure</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2021/07/about-list-view-1024x803.png\" alt=\"\" class=\"wp-image-10988\" /></figure>\n\n\n\n<p>Sometimes you need a simple landing page, but sometimes you need something a little more robust. As blocks increase, patterns emerge, and content creation gets easier, new solutions are needed to make complex content easy to navigate. List View is the best way to jump between layers of content and nested blocks. Since the List View gives you an overview of all the blocks in your content, you can now navigate quickly to the precise block you need. Ready to focus completely on your content? Toggle it on or off to suit your workflow.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Suggested Patterns for Blocks</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2021/07/about-pattern-suggestions-1024x555.png\" alt=\"\" class=\"wp-image-10989\" /></figure>\n\n\n\n<p>Starting in this release, the Pattern Transformations tool will suggest block patterns based on the block you are using. Right now, you can give it a try in the Query Block and Social Icon Block. As more patterns are added, you will be able to get inspiration for how to style your site without ever leaving the editor!</p>\n\n\n\n<h3 class=\"wp-block-heading\">Style and Colourise Images</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2021/07/about-duotone-1024x837.png\" alt=\"\" class=\"wp-image-10990\" /></figure>\n\n\n\n<p>Colourise your image and cover blocks with duotone filters! Duotone can add a pop of colour to your designs and style your images (or videos in the cover block) to integrate well with your themes. You can think of the duotone effect as a black and white filter, but instead of the shadows being black and the highlights being white, you pick your own colours for the shadows and highlights. There’s more to learn about how it works in the documentation.</p>\n\n\n\n<h2 class=\"has-text-align-left wp-block-heading\">For Developers to Explore</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://wordpress.org/news/files/2021/07/about-theme-json-2x-1024x613.png\" alt=\"\" class=\"wp-image-10992\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Theme.json</h3>\n\n\n\n<p>Introducing the Global Styles and Global Settings APIs: control the editor settings, available customisation tools, and style blocks using a theme.json file in the active theme. This configuration file enables or disables features and sets default styles for both a website and blocks. If you build themes, you can experiment with this early iteration of a useful new feature. For more about what is currently available and how it works, <a href=\"https://make.wordpress.org/core/2021/06/25/introducing-theme-json-in-wordpress-5-8/\">check out this dev note</a>.</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">Dropping support for IE11</h3>\n\n\n\n<p>Support for Internet Explorer 11 has been dropped as of this release. This means you may have issues managing your site that will not be fixed in the future. If you are currently using IE11, it is strongly recommended that you <a href=\"https://browsehappy.com/\">switch to a more modern browser</a>.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">Adding support for WebP</h3>\n\n\n\n<p>WebP is a modern image format that provides improved lossless and lossy compression for images on the web. WebP images are around 30% smaller on average than their JPEG or PNG equivalents, resulting in sites that are faster and use less bandwidth.</p>\n</div>\n</div>\n\n\n\n<h3 class=\"wp-block-heading\">Adding Additional Block Supports</h3>\n\n\n\n<p>Expanding on previously implemented block supports in WordPress <a href=\"https://make.wordpress.org/core/2020/11/18/block-supports-in-wordpress-5-6/\">5.6</a> and <a href=\"https://make.wordpress.org/core/2021/02/24/changes-to-block-editor-components-and-blocks/\">5.7</a>, WordPress 5.8 introduces several new block support flags and new options to customise your registered blocks. More information is available in the <a href=\"https://make.wordpress.org/core/2021/06/25/block-supports-api-updates-for-wordpress-5-8/\">block supports dev note</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Check out the Field Guide for more!</h3>\n\n\n\n<p>Check out the latest version of the WordPress Field Guide. It highlights developer notes for each change of which you may want to be aware: <a href=\"https://make.wordpress.org/core/2021/07/03/wordpress-5-8-field-guide/\">WordPress 5.8 Field Guide.</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\">The Squad</h2>\n\n\n\n<p>The WordPress 5.8 release was lead by <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, and supported by this highly enthusiastic release squad:</p>\n\n\n\n<ul><li><strong>Release Co-Coordinator:</strong> Jeffrey Paul (<a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>)</li><li><strong>Release Co-Coordinator:</strong> Jonathan Desrosiers (<a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>)</li><li><strong>Editor Tech Lead:</strong> Riad Benguella (<a href=\'https://profiles.wordpress.org/youknowriad/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>youknowriad</a>)</li><li><strong>Marketing and Communications Lead:</strong> Josepha Haden Chomphosy (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>)</li><li><strong>Documentation Lead:</strong> Milana Cap (<a href=\'https://profiles.wordpress.org/milana_cap/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>milana_cap</a>)</li><li><strong>Test Lead:</strong> Piotrek Boniu (<a href=\'https://profiles.wordpress.org/boniu91/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>boniu91</a>)</li><li><strong>Support Lead: </strong>Mary Job (<a href=\'https://profiles.wordpress.org/mariaojob/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mariaojob</a>)</li></ul>\n\n\n\n<p>This release is the reflection of the hard work of 530 generous volunteer contributors. Collaboration occurred on over <a href=\"https://core.trac.wordpress.org/query?milestone=5.8&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">320 tickets on Trac</a> and over <a href=\"https://github.com/wordpress/gutenberg/compare/v10.0.0...v10.7.0\">1,500 pull requests on GitHub</a>.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/5ubliminal/\">5ubliminal</a>, <a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/9primus/\">9primus</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/abderrahman/\">abderrahman</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas/\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/achbed/\">achbed</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">alanjacobmathew</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/aleperez92/\">Alejandro Perez</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/amarinediary/\">amarinediary</a>, <a href=\"https://profiles.wordpress.org/gadgetroid/\">Amogh Harish</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey “Rarst” Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/andy/\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/anotia/\">anotia</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/vanyukov/\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/apokalyptik/\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/arena/\">arena</a>, <a href=\"https://profiles.wordpress.org/lephleg/\">Argyris Margaritis</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ariskataoka/\">ariskataoka</a>, <a href=\"https://profiles.wordpress.org/arkrs/\">arkrs</a>, <a href=\"https://profiles.wordpress.org/aruphi/\">Armand</a>, <a href=\"https://profiles.wordpress.org/arnaudban/\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a>, <a href=\"https://profiles.wordpress.org/arunsathiya/\">Arun a11n</a>, <a href=\"https://profiles.wordpress.org/aspexi/\">Aspexi</a>, <a href=\"https://profiles.wordpress.org/atjn/\">atjn</a>, <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a>, <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/pixolin/\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a>, <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bmcculley/\">bmcculley</a>, <a href=\"https://profiles.wordpress.org/boblinthorst/\">Bob Linthorst</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/bogdanpreda/\">Bogdan Preda</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradt/\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brettshumaker/\">Brett Shumaker</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cameronjonesweb/\">Cameron Jones</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/carlalexander/\">Carl Alexander</a>, <a href=\"https://profiles.wordpress.org/carlomanf/\">carlomanf</a>, <a href=\"https://profiles.wordpress.org/carlosgprim/\">carlosgprim</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/caseymilne/\">Casey Milne</a>, <a href=\"https://profiles.wordpress.org/cenay/\">Cenay Nailor</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">Ceyhun Ozugur</a>, <a href=\"https://profiles.wordpress.org/nhuja/\">Chandra M</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/ryno267/\">Chuck Reynolds</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a>, <a href=\"https://profiles.wordpress.org/design_dolphin/\">CodePoet</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a>, <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Engle Robertson</a>, <a href=\"https://profiles.wordpress.org/crazycoders/\">crazycoders</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">critterverse</a>, <a href=\"https://profiles.wordpress.org/czapla/\">czapla</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">Dávid Szabó</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/damonganto/\">damonganto</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/vetyst/\">Danny</a>, <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dartiss/\">David Artiss</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidkryzaniak/\">David Kryzaniak</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/devle/\">devfle</a>, <a href=\"https://profiles.wordpress.org/devrekli/\">devrekli</a>, <a href=\"https://profiles.wordpress.org/dhruvkb/\">dhruvkb</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dingdang/\">dingdang</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/djbu/\">djbu</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/donnapep/\">Donna Peplinskie</a>, <a href=\"https://profiles.wordpress.org/dougwollison/\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/dpik/\">dpik</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</a>, <a href=\"https://profiles.wordpress.org/drebbitsweb/\">Dreb Bits</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/itsjusteileen/\">Eileen Violini</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/aliveic/\">Emil E</a>, <a href=\"https://profiles.wordpress.org/emarticor/\">Emilio Martinez</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a>, <a href=\"https://profiles.wordpress.org/empatogen/\">empatogen</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/felixbaumgaertner/\">felixbaumgaertner</a>, <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/fijisunshine/\">fijisunshine</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann/\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/bueltge/\">Frank Bueltge</a>, <a href=\"https://profiles.wordpress.org/frosso1/\">frosso1 (a11n)</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekpress/\">GeekPress</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/gregorlove/\">gRegor Morrill</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/hannahmalcolm/\">Hannah Malcolm</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">happiryu</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">hedgefield</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/hermpheus/\">Herm Martini</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/herrvigg/\">herrvigg</a>, <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/icopydoc/\">icopydoc</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/dragunoff/\">Ivaylo Draganov</a>, <a href=\"https://profiles.wordpress.org/wphound/\">Ivete Tecedor</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jacklenox/\">Jack Lenox</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jamesbonham/\">James Bonham</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/pondermatic/\">James Richards</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/jamil95/\">jamil95</a>, <a href=\"https://profiles.wordpress.org/janak007/\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a>, <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a>, <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jeffikus/\">Jeffrey Pearce</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeremy80/\">jeremy80</a>, <a href=\"https://profiles.wordpress.org/jeroenreumkens/\">JeroenReumkens</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"https://profiles.wordpress.org/jillebehm/\">jillebehm</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/sephsekla/\">Joe Bailey-Roberts</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenström</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/bhwebworks/\">John Sundberg</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/dkampdesign/\">JoshuaDoshua</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/kaavyaiyer/\">kaavyaiyer</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/vyskoczilova/\">Karolina Vyskocilova</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kittmedia/\">KittMedia</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/klevyke/\">klevyke</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/vdwijngaert/\">Koen Van den Wijngaert</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/devnel/\">Kyle Nel</a>, <a href=\"https://profiles.wordpress.org/lakrisgubben/\">lakrisgubben</a>, <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/lmurillom/\">Larissa Murillo</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/lewiscowles/\">LewisCowles</a>, <a href=\"https://profiles.wordpress.org/lifeforceinst/\">lifeforceinst</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a>, <a href=\"https://profiles.wordpress.org/displaynone/\">Luis Sacristán</a>, <a href=\"https://profiles.wordpress.org/infolu/\">Luiz Araújo</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/m0ze/\">m0ze</a>, <a href=\"https://profiles.wordpress.org/maedahbatool/\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/travel_girl/\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/mariaojob/\">Mary Job</a>, <a href=\"https://profiles.wordpress.org/marylauc/\">marylauc</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/mblach/\">mblach</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/meloniq/\">meloniq</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mikehansenme/\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/mike_cowobo/\">Mike Martel</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/mkdgs/\">mkdgs</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/mmxxi/\">mmxxi</a>, <a href=\"https://profiles.wordpress.org/daddou/\">Mohamed El Amine DADDOU</a>, <a href=\"https://profiles.wordpress.org/mohamedfaragallah/\">Mohammed Faragallah</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/m_uysl/\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/mweichert/\">mweichert</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/naoki0h/\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nayanchamp7/\">Nazrul Islam Nayan</a>, <a href=\"https://profiles.wordpress.org/dway/\">nderambure</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/ninanmnm/\">ninanmnm</a>, <a href=\"https://profiles.wordpress.org/pianist787/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/nvartolomei/\">nvartolomei</a>, <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a>, <a href=\"https://profiles.wordpress.org/olafklejnstrupjensen/\">olafklejnstrupjensen</a>, <a href=\"https://profiles.wordpress.org/olgabulat/\">Olga Bulat</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</a>, <a href=\"https://profiles.wordpress.org/oxyrealm/\">oxyrealm</a>, <a href=\"https://profiles.wordpress.org/ozh/\">Ozh</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/paaggeli/\">Panagiotis Angelidis</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/fantasy1125/\">Pascal Knecht</a>, <a href=\"https://profiles.wordpress.org/patkemper/\">Pat</a>, <a href=\"https://profiles.wordpress.org/patricklindsay/\">patricklindsay</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Paul</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/psrpinto/\">Paulo Pinto</a>, <a href=\"https://profiles.wordpress.org/pavelvisualcomposer/\">Pavel I</a>, <a href=\"https://profiles.wordpress.org/mrpauloen/\">Paweł</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/phena109/\">phena109</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/wppinar/\">Pinar</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/mordauk/\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/ptahdunbar/\">Pirate Dunbar</a>, <a href=\"https://profiles.wordpress.org/promz/\">Pramod Jodhani</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/pyronaur/\">pyronaur</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rafhun/\">rafhun</a>, <a href=\"https://profiles.wordpress.org/rkradadiya/\">Rajesh Radadiya</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/rellect/\">Refael Iliaguyev</a>, <a href=\"https://profiles.wordpress.org/renehermi/\">Rene Hermenau</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/reynhartono/\">reynhartono</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/rima1889/\">Rima Prajapati</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat</a>, <a href=\"https://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"https://profiles.wordpress.org/robdxw/\">robdxw</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/rogerlos/\">rogerlos</a>, <a href=\"https://profiles.wordpress.org/roo2/\">roo2</a>, <a href=\"https://profiles.wordpress.org/lev0/\">Roy</a>, <a href=\"https://profiles.wordpress.org/geekstreetwp/\">Russell Aaron</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Saša</a>, <a href=\"https://profiles.wordpress.org/sabrinazeidan/\">Sabrina Zeidan</a>, <a href=\"https://profiles.wordpress.org/sahilmepani/\">Sahil Mepani</a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sandipmondal/\">Sandip Mondal</a>, <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/sasagar/\">SASAPIYO</a>, <a href=\"https://profiles.wordpress.org/satrancali/\">satrancali</a>, <a href=\"https://profiles.wordpress.org/savicmarko1985/\">savicmarko1985</a>, <a href=\"https://profiles.wordpress.org/gmagicscott/\">Scott Lesovic</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/scottconnerly/\">scottconnerly</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/sean212/\">Sean Fisher</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebbb/\">sebbb</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/silb3r/\">silb3r</a>, <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/spikeuk1/\">spikeuk1</a>, <a href=\"https://profiles.wordpress.org/spytzo/\">spytzo</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/khromov/\">Stanislav Khromov</a>, <a href=\"https://profiles.wordpress.org/deustron/\">Stefan Hüsges</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell/\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/strategio/\">strategio</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sumaiyasiddika/\">Sumaiya Siddika</a>, <a href=\"https://profiles.wordpress.org/sumanm/\">Suman</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/5um17/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/sushmak/\">sushmak</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/tamlyn/\">tamlyn</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Tetsuaki Hamano</a>, <a href=\"https://profiles.wordpress.org/themes-1/\">them.es</a>, <a href=\"https://profiles.wordpress.org/kraftner/\">Thomas Kräftner</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/thomas-vitale/\">Thomas Vitale</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timotijhof/\">TimoTijhof</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tmdk/\">tmdk</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/trejder/\">trejder</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a>, <a href=\"https://profiles.wordpress.org/vipulc2/\">Vipul Chandel</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/wangql/\">wangql</a>, <a href=\"https://profiles.wordpress.org/webdragon/\">WebDragon</a>, <a href=\"https://profiles.wordpress.org/wendyjchen/\">Wendy Chen</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/xavivars/\">Xavi Ivars</a>, <a href=\"https://profiles.wordpress.org/tikifez/\">Xristopher Anderton</a>, <a href=\"https://profiles.wordpress.org/y_kolev/\">Y_Kolev</a>, <a href=\"https://profiles.wordpress.org/yansern/\">Yan Sern</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yuliyan/\">yuliyan</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/zackkrida/\">Zack Krida</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, <a href=\"https://profiles.wordpress.org/zkancs/\">zkancs</a>, and <a href=\"https://profiles.wordpress.org/sunxiyuan/\">孙锡源</a>.</p>\n\n\n\n<p>In addition to these contributors, many thanks to all of the community volunteers who contribute in the support forums. They answer questions from people across the world, whether they are using WordPress for the first time, or they’ve been around since the first release all the way back in 2003. These releases are as successful as they are because of their efforts!\n</p>\n\n\n\n<p>Finally, thanks to all the community translators who help make WordPress available in over 200 languages for every release. 80 languages have translated 80%, or more, of WordPress 5.8 and our community translators are hard at work ensuring more languages are on their way. If contributing to WordPress appeals to you, it’s easy to learn more. Check out Make WordPress or the core development blog.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:32px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:32px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://en-gb.wordpress.org/2021/07/24/wordpress-5-8-tatum/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:73:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Belated 18th Birthday Wishes, 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://en-gb.wordpress.org/2021/05/28/belated-18th-birthday-wishes-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://en-gb.wordpress.org/2021/05/28/belated-18th-birthday-wishes-wordpress/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 May 2021 10:31: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:4:\"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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://en-gb.wordpress.org/?p=1456\";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:247:\"WordPress was launched on 27 May 2003 and, yesterday, became an adult! WordPress now powers 40% of the web. To celebrate, here is a list of 40 milestones that have led to this remarkable achievement. Grab your favourite food and drink and dive in!\";s: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:\"Mark Robson\";s: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:347:\"\n<p>WordPress was launched on 27 May 2003 and, yesterday, became an adult!</p>\n\n\n\n<p>WordPress now powers 40% of the web.</p>\n\n\n\n<p>To celebrate, here is a list of 40 milestones that have led to this remarkable achievement.</p>\n\n\n\n<p>Grab your favourite food and drink and <a href=\"https://en-gb.wordpress.org/40-percent-of-web/\">dive in</a>!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://en-gb.wordpress.org/2021/05/28/belated-18th-birthday-wishes-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.7.2 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:72:\"https://en-gb.wordpress.org/2021/05/13/wordpress-5-7-2-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://en-gb.wordpress.org/2021/05/13/wordpress-5-7-2-security-release/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 May 2021 10:27:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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://en-gb.wordpress.org/?p=1436\";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:356:\"WordPress 5.7.2 is now available. This security release features one security fix. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.7.2 is a short-cycle security release. The next major release will be version 5.8. You can update to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Mark Robson\";s: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:2239:\"\n<p>WordPress 5.7.2 is now available.</p>\n\n\n\n<p>This security release features one security fix. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.7.2 is a short-cycle security release. The next major release will be version 5.8.</p>\n\n\n\n<p>You can update to WordPress 5.7.2 by downloading from WordPress.org, or by visiting your Dashboard → Updates and clicking “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Security Updates</h3>\n\n\n\n<p>One security issue affecting WordPress versions between 3.7 and 5.7. If you haven’t yet updated to 5.7, all WordPress versions since 3.7 have also been updated to fix the following security issue:</p>\n\n\n\n<ul><li>Object injection in PHPMailer, <a href=\"https://nvd.nist.gov/vuln/detail/CVE-2020-36326\">CVE-2020-36326</a> and <a href=\"https://nvd.nist.gov/vuln/detail/CVE-2018-19296\">CVE-2018-19296</a>.</li></ul>\n\n\n\n<p>Thank you to the members of the WordPress security team for implementing these fixes in WordPress.</p>\n\n\n\n<p>For more information refer to <a href=\"https://wordpress.org/support/wordpress-version/version-5-7-2/\">the version 5.7.2 HelpHub documentation</a> page.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Thanks and props!</h3>\n\n\n\n<p>The 5.7.2 release was led by <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a> and <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.7.2 happen: <a href=\"https://profiles.wordpress.org/audrasjb\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans\">@ayeshrajans</a>, <a href=\"https://profiles.wordpress.org/desrosj\">@desrosj</a>, <a href=\"https://profiles.wordpress.org/dd32\">@dd32</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">@peterwilsoncc</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">@SergeyBiryukov</a>, and <a href=\"https://profiles.wordpress.org/xknown\">@xknown</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://en-gb.wordpress.org/2021/05/13/wordpress-5-7-2-security-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s: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:38:\"https://en-gb.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:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 21 Aug 2023 17:04:26 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 14 Aug 2023 07:14:07 GMT\";s:4:\"link\";s:64:\"<https://en-gb.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 8\";}}s:5:\"build\";s:14:\"20211221010300\";}','no'),(6188,'_transient_timeout_feed_mod_94d0b45cbbe5640144493b43a9e8f566','1692680666','no'),(6189,'_transient_feed_mod_94d0b45cbbe5640144493b43a9e8f566','1692637466','no'),(6190,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1692680667','no');
INSERT INTO `wpdh_options` VALUES (6191,'_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:70:\"Do The Woo Community: Podcasting and Doing the Woo at WordCamp US 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:28:\"https://dothewoo.io/?p=76107\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://dothewoo.io/podcasting-and-doing-the-woo-at-wordcamp-us-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:411:\"<p>Better late than never. Been thinking and talking about WordCamp US for the past few months, so yes, I will be there.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/podcasting-and-doing-the-woo-at-wordcamp-us-2023/\">Podcasting and Doing the Woo at WordCamp US 2023</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 19 Aug 2023 13:09:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:164:\"Post Status: Translations Across the Project • Admin Design • New Blocks Page • Working Group on Organizations Supporting WordPress • Contributor Mentorship\";s:7:\"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:159:\"https://poststatus.com/translations-across-the-project-admin-design-new-blocks-page-working-group-on-organizations-supporting-wordpress-contributor-mentorship/\";s:7:\"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:159:\"https://poststatus.com/translations-across-the-project-admin-design-new-blocks-page-working-group-on-organizations-supporting-wordpress-contributor-mentorship/\";s: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:19033:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">With just a few days before Community Summit, Contributor Day, and WordCamp US, many initiatives across the project are gearing up for time well-spent together. Docs, Training, and several other teams are joining together to work on translations and localizations in a way that supports Gutenberg Phase 4 Multilingual.The Design team is working on the… </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box150145_a5ac79-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Translations, Dashboard Redesign, Blocks page, Supporting Orgs, Mentorship</h2><p class=\"kt-blocks-info-box-text\"> <a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a><br /><br /> <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a><br /><br /> <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a><br /><br /> <a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a><br /><br /> ‍ <a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">The Inaugural Cohort of the WordPress Contributor Mentorship Program has Concluded</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-150145_9cb3a4-58\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-150145_050cc2-2e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/\">Contribution Stats for WordPress 6.3 « Lionel »</a></blockquote>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/16/contributor-working-group-mentorship-chat-agenda-august-17th-0700-utc-apac-emea-and-1600-utc-amer/\">Contributor Working Group: Mentorship Chat Agenda | August 17th 07:00 UTC (APAC/EMEA) and 16:00 UTC (AMER)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/14/wcus-2023-community-team-event-at-contributor-day/\">WCUS 2023: Community Team event at Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/09/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-august-9-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on August 9, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/16/a-week-in-core-august-14-2023/\">Two Weeks in Core – August 14, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/status-update-on-the-interactivity-api/\">Status update on the Interactivity API</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" target=\"_blank\" rel=\"noreferrer noopener\">Admin Design</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/whats-new-for-developers-august-2023/\">What’s new for developers? (August 2023)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/dev-chat-agenda-august-16-2023/\">Dev Chat agenda, August 16, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/14/editor-chat-agenda-16-august-2023/\">Editor Chat Agenda: 16 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/08/14/design-share-jul-31-aug-11/\">Design Share: Jul 31-Aug 11</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/15/agenda-for-docs-team-bi-weekly-meeting-august-15-2023/\">Agenda for Docs Team bi-weekly meeting August 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/documentation-team-update-august-14-2023/\">Documentation Team Update – August 14, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/08/16/hosting-team-meeting-agenda-8-16-2023/\">Hosting Team Meeting Agenda 8-16-2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/07/10/notes-global-marketing-team-meeting-4-july-2023/\">Notes: Global Marketing Team meeting, 4 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/marketing-team-update-the-first-half-of-2023/\">Marketing Team Update: The first half of 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/performance-chat-summary-15-august-2023/\">Performance Chat Summary: 15 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/plugin-review-team-14-august-2023/\">Plugin Review Team: 14 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/16/agenda-weekly-polyglots-chat-august-16-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 16, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">The Inaugural Cohort of the WordPress Contributor Mentorship Program has Concluded</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-reps-call-for-nominations-3/\">Test Team Reps: Call for Nominations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-at-wcus-2023/\">Test Team at WCUS 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/test-team-update-14-august-2023/\">Test Team Update: 14 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">Blue Note: The second community theme is released</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/15/themes-team-update-august-15-2023/\">Themes team update August 15, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person & Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/14/training-team-meeting-recap-8th-august-2023/\">Training Team Meeting Recap – 8th August 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/embedding-media-and-third-party-content-on-your-website/\">Embedding media and third-party content on your website</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/testing-your-plugins-for-php-version-compatibility/\">Testing your plugins for PHP version compatibility</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=https-www-meetup-com-learn-wordpress-online-workshops-events-295453051\">The Wide World of WordPress Events</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-learn-wordpress-platform-part-1\">Contributing to the Learn WordPress platform – part 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=whats-new-for-developers-august-2023\">What’s new for developers? (August 2023)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-12\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-hour\">Training Team Contributor Hour</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=website-auditing-and-conversion-optimization\">Website auditing and conversion optimization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-database-optimization-and-maintenance\">WordPress database optimization and maintenance</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-a-contact-page\">Creating a contact page</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 19 Aug 2023 03:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";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:116:\"Post Status: WordPress 6.3 • Release Workflows • European Union Cyber Resiliency Act • Gutenberg Accessibility\";s:7:\"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:37:\"https://poststatus.com/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://poststatus.com/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18225:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.3, Lionel, has been released. It’s time to test out the details and footnotes blocks, give the WP_DEVELOPMENT_MODE a try, and check out the new Get Involved tab on the Welcome screen. The WordPress Training team announces its first course cohort for Learn.WordPress.org. The course will cover Developing Your First WordPress Block, and offer… </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, 1st LearnWP Cohort, EU CRA</h2><p class=\"kt-blocks-info-box-text\"> <a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a><br /><br /> ‍ <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br /> <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/contribute\">Contribute</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-9 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-14 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/07/matrix-test-results/\">Matrix Test Results</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">WordPress 6.3 performance improvements</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/styling-blocks-empowering-users-with-css-custom-properties/\">Styling blocks: empowering users with CSS custom properties</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/09/dev-chat-agenda-august-9-2023/\">Dev Chat agenda, August 9, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/editor-chat-agenda-9-august-2023/\">Editor Chat Agenda: 9 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/documentation-team-update-august-7-2023/\">Documentation Team Update – August 7, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/08/performance-chat-summary-8-august-2023/\">Performance Chat Summary: 8 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/plugin-review-team-7-august-2023/\">Plugin Review Team: 7 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/adding-some-meta-buttons-always-visible/\">Adding some meta buttons always visible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/new-wordpress-org-theme-for-your-rosetta-site/\">New WordPress.org Theme for your Rosetta Site</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/test-team-update-7-august-2023/\">Test Team Update: 7 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/07/themes-team-meeting-agenda-for-august-08-2023/\">Themes team meeting agenda for August 08, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/themes-team-update-august-08-2023/\">Themes team update August 08, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person & Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/exploring-wordpress-6-3/\">Exploring WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-spacer-block/\">How to use the spacer block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-6\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-5\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-day-online-session-2\">Training Team Contributor Day Online Session</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 19 Aug 2023 03:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";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:125:\"Post Status: WordPress 6.3 RC3 • Cyber Resilience Act • Accessibility in Block Editing • Merging Gutenberg during Alpha\";s:7:\"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:124:\"https://poststatus.com/wordpress-6-3-rc3-cyber-resilience-act-accessibility-in-block-editing-merging-gutenberg-during-alpha/\";s:7:\"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://poststatus.com/wordpress-6-3-rc3-cyber-resilience-act-accessibility-in-block-editing-merging-gutenberg-during-alpha/\";s: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:24892:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 30, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">What do WordPress, Drupal, Joomla, and TYPO3 have in common? Leaders across these Content Management Systems have come together to express their concerns and seek dialogue with EU legislators regarding the proposed Cyber Resilience Act. They emphasize the vital role of Free and Open Source Software in fostering innovation, security, and economic prosperity. We’re just… </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Whose Ticket, Merging Gutenberg during Alpha, and EU CRA</h2><p class=\"kt-blocks-info-box-text\"> <a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a><br /><br /> <a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br /> <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\">People of WordPress: Ihtisham Zahoor</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-17 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/wordpress-6-3-release-day-process/\">WordPress 6.3 Release Day Process</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-22 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-20 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/accessibility-team-meeting-agenda-august-4-2023/\">Accessibility Team Meeting Agenda: August 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/testing-matrix/\">Testing Matrix</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/a-week-in-core-july-31-2023/\">A Week in Core – July 31, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\">Beyond block styles, part 3: building custom design tools</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/understand-and-use-wordpress-nonces-properly/\">Understand and use WordPress nonces properly</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\">Beyond block styles, part 2: building a custom style for the Separator block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/dev-chat-agenda-august-1-2023/\">Dev Chat agenda, August 2, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/08/01/summary-for-docs-team-meeting-jul-18-2023/\">Summary for Docs Team meeting, Jul 18, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/08/02/hosting-team-meeting-agenda-2023-08-02/\">Hosting Team meeting agenda 2023-08-02</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/31/last-week-openverse-2023-07-24-2023-07-31/\">A week in Openverse: 2023-07-24 – 2023-07-31</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/performance-chat-summary-25-july-2023-2/\">Performance Chat Summary: 1 August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/core-performance-team-update-july-2023/\">Core Performance Team Update: July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/plugin-review-team-31-jul-2023/\">Plugin Review Team: 31 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/03/cross-locale-project-translation-editor-request-5/\">Cross-Locale Project Translation Editor Request</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/adding-error-checks-at-translate-wordpress-org/\">Adding error checks at translate.wordpress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/agenda-weekly-polyglots-chat-august-2-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 2, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/08/agenda-for-august-3rd-support-meeting-2/\">Agenda for August 3rd Support Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/summary-for-july-27th-support-meeting/\">Summary for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/test-team-update-31-july-2023/\">Test Team Update: 31 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/31/hallway-hangout-extending-blocks-with-custom-design-tools/\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/themes-team-update-august-01-2023/\">Themes team update August 01, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/training-team-meeting-recap-1st-august-2023/\">Training Team Meeting Recap – 1st August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/01/xpost-whats-new-on-learn-wordpress-in-july-2023/\">X-post: What’s new on Learn WordPress in July 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-add-tables-to-your-site/\">How to add tables to your site</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-internationalization\">Common WordPress APIs: Internationalization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-10\">WP dev livestream: Sendig block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 19 Aug 2023 03:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";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:91:\"Post Status: What is Coaching & What Are Key Times to Have a Coach with Kelly Gallagher\";s:7:\"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:96:\"https://poststatus.com/what-is-coaching-what-are-key-times-to-have-a-coach-with-kelly-gallagher/\";s:7:\"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://poststatus.com/what-is-coaching-what-are-key-times-to-have-a-coach-with-kelly-gallagher/\";s: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:47578:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this podcast episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> introduces his professional coach, <a href=\"https://www.linkedin.com/in/coachkellygallagher\">Kelly Gallagher</a>, to discuss the role of coaching in personal and professional growth. They explore the difference between coaching and therapy and how they can complement each other. They highlight the value of coaching for high achievers and how it can help with career changes, improving performance, and enhancing communication skills. Cory shares his personal experience with coaching and expresses its positive impact on his life.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Episode Highlights:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li>[00:00:00] <strong>The role of coaching and introduction of Kelly Gallagher-</strong>Cory introduces Kelly Gallagher as his professional coach and discusses their working relationship for four and a half years.</li>\n\n\n\n<li>[00:01:25] <strong>Kelly’s background in business development and coaching training-</strong> Kelly shares her background in business development and her coaching journey, including her training and pursuit of a master’s degree.</li>\n\n\n\n<li>[00:07:38] <strong>The difference between coaching and therapy, and the value of coaching for high achievers</strong>-Cory and Kelly discuss the definition of coaching, the distinction between coaching and therapy, and the importance of coaching for high achievers.</li>\n\n\n\n<li>[00:11:39] <strong>The distinction between therapy and coaching-</strong>Discussion on the differences between therapy and coaching and how they complement each other.</li>\n\n\n\n<li>[00:12:41] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high achievers and the importance of self-awareness.</li>\n\n\n\n<li>[00:13:55]<strong> Times when people seek coaching-</strong>Identification of common situations that lead individuals to actively seek coaching, such as career conflicts, the desire for personal growth, and the need for support during organizational changes.</li>\n\n\n\n<li>[00:23:31] <strong>The role of coaching and the importance of ICF certification-</strong>Discussion on the role of coaching, the significance of ICF certification, and the difference between coaching and therapy.</li>\n\n\n\n<li>[00:28:34] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high performers and the potential negative stigma associated with coaching as a remedial tool.</li>\n\n\n\n<li>[00:31:58] <strong>Coaching for entrepreneurs-</strong>The essentiality of coaching for entrepreneurs, particularly in navigating change, making big decisions, and improving performance.</li>\n\n\n\n<li>[00:34:24]<strong> The role of coaching and seizing opportunities-</strong>Cory reflects on the importance of having a coach and making the most of opportunities in business.</li>\n\n\n\n<li>[00:35:18] <strong>The importance of personal happiness and joy in work</strong>-Kelly discusses the significance of finding joy and personal happiness in one’s work and how it affects performance.[00:37:09] <strong>The passion for helping others and personal growth-</strong>Kelly shares her passion for helping others find personal growth in coaching and how it is more rewarding than pure sales.</li>\n</ul>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns sponsor has-theme-palette-8-background-color has-background is-layout-flex wp-container-25 wp-block-columns-is-layout-flex\" id=\"StellarWP\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"StellarWP has-theme-palette-1-color has-text-color wp-block-heading\" id=\"Sponsor\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <span><a href=\"https://poststat.us/elementor\" rel=\"sponsored nofollow\">Elementor</a></span></h3>\n\n\n\n<p><strong>Elementor </strong>enables web creators to build professional, pixel-perfect websites with an intuitive visual builder. Quickly create amazing websites for your clients or your business with complete control over every piece, without writing a single line of code. Join <a href=\"https://elementor.com/community/\">a vast community of web creators</a> from all around the world who deliver exceptional websites using Elementor.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\"><div class=\"wp-block-image elementor-logo\">\n<img src=\"https://poststatus.com/wp-content/uploads/2022/08/Elementor-Logo-Symbol-Blue-150x150.png\" alt=\"Elementor\" class=\"wp-image-104033\" width=\"150\" height=\"150\" title=\"Elementor Logo\" />Elementor</div></div>\n</div>\n</div></div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\"> Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://obcc.utdallas.edu/coaching/\">University of Texas at Dallas Coaching Program</a></li>\n\n\n\n<li><a href=\"https://coachingfederation.org/\">International Coach Federation</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/salesrxcoaching\">Kelly Gallagher</a> (Executive Coach, <a href=\"https://gallagherexecutivecoachingpartnerships.com/\">Gallagher Executive Coaching Partnerships</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:00) – Hey everybody. Welcome back to Post Status Draft. I’ve got a special guest today and I’m excited because I’ve worked with this awesome person professional for I think it’s been five years now. Four years? No, probably four and a half years now, Kelly. And. So back when I had just sold items, I was working the, you know, my job at trying to transition team, get some things done in the year after we had sold and I was starting to percolate. Okay, I’ve got this huge career change coming up, this huge business, whatever change in my professional life. And I sought out a coach and found Kelly Gallagher. So she’s my professional coach for four and a half years. We’re going to have a great conversation talking about coaching times when it’s so helpful to have a coach. And I’ll share personal experiences, too, but you’re in for a treat today. So Kelly, thanks so much for being on the podcast.</p>\n\n\n\n<p>Kelly Gallagher (00:01:02) – Thank you for having me. I’ve been watching some of your podcasts, and I’m just honored to be the subject of one of them.</p>\n\n\n\n<p>Kelly Gallagher (00:01:07) – So thank you.</p>\n\n\n\n<p>Cory Miller (00:01:09) – I often refer to Kelly as my secret weapon because a lot of the big things that have happened in the last five years, for sure in my life I’ve rehearsed, practiced, talked through all of these with Kelly. So, Kelly, tell us a little bit about your background.</p>\n\n\n\n<p>Kelly Gallagher (00:01:25) – Um, Cory, I came from a business development specialty within corporate America, specifically pharmaceuticals and the medical industry, and also diagnostics and lab testing. So I was a road warrior. I was out closing deals and my responsibilities escalated and escalated to the point where. Um, the last ten years, I was with a diagnostic lab, and I was also training other salespeople. I was interviewing them, hiring them and then coaching them. But I didn’t know I was coaching because I wasn’t sure even what coaching was. I wanted to take over the training department. So I was told, Well, you have no experience, even though I was already doing it. So I challenged and said I would like to go back and get my masters.</p>\n\n\n\n<p>Kelly Gallagher (00:02:16) – And I entered the coaching program, which is a just gold standard industry. I don’t know. It turned out to be one of the best. And so I entered that. And then while I was doing it, I thought, why not just get a master’s in business administration? Because I already know these things. So I went to school for five years and it was the best five years of my life. Um, I learned that I love to learn, and I think that may be what separates good coaches from great coaches. Is that. Constant wanting to move the bar up, that constant going to class mentality to be at another level. And that’s what’s really defined my career. There’s not really a time of the year when I’m not in continuing education and it’s my passion. I just want to be a master of my craft. So that was my journey. The interesting sidebar is I was told you can do all this, but if your sales performance drops, we’re done. We’re not paying. I said, okay.</p>\n\n\n\n<p>Kelly Gallagher (00:03:29) – But the more I studied coaching and communications, the higher myself through. And there’s actually a correlation between the two. It doesn’t seem like there would be, but I learned how to really listen. I was a good listener to begin with, but I became just a great listener and observer of behavior. And I also learned how to challenge people. So if a buyer told me, yes, yes, I’m definitely going to get the contract signed. And I sensed a hesitancy, I would call them out and go, you know, you’re sending one thing, but I’m hearing something else. It sounds like you’re still uneasy. And a lot of times by doing that, I could tease out that they weren’t going to buy it and we can have further discussion. So the coaching actually when I finished up. My sales career. It was as far as I could take it, but I owe it all to the coaching training.</p>\n\n\n\n<p>Cory Miller (00:04:32) – That’s awesome. Now, I know you have ICF credentials and all that and you can share a little bit about what ICF is, but so I know you are very involved there.</p>\n\n\n\n<p>Cory Miller (00:04:45) – Have done there’s so many regular like you said, I do a lot of work with mental health practitioners and there’s such a very, I would say regulated, but no like very intense and purposeful way to do therapy. A lot of guidelines, a lot of regulations, a lot of licensure things, ethical consideration, continuing. Ed But coaching has so much of that too. And that’s where ICF comes into yes.</p>\n\n\n\n<p>Kelly Gallagher (00:05:12) – And unfortunately, there’s not a specific license. I wish there was, but because there isn’t, the consumer has to really be discerning. And one way to start is that ICF because it’s the gold standard and for coach is not doing continuing education and involved with ICF. I don’t know. Chances are there will be less rigor to what they’re going to be able to do. It’s not that they wouldn’t be good coaches.</p>\n\n\n\n<p>Cory Miller (00:05:40) – Yeah, I think the ICF stuff is strong. Sometimes I feel like it’s a little bit too limiting, but I go, Gosh, it’s so good because it’s trying to really professionalize the coaching industry where anybody can just say, Oh, I’m my coach, I’m a life coach, whatever it is.</p>\n\n\n\n<p>Kelly Gallagher (00:05:57) – People just hang out a shingle and say, Boom, magic, I’m a coach. I two think it can be limiting, but I offer a bit of a hybrid because I have so much business experience. I’ll often tell my clients, Hey, I’m going to shift out of coaching if you want. Is it okay if I put on my business act and they almost never had anyone say no in interviews? And so then I’m able to interject a little, you know what this happened to blah, blah, blah. And I think that’s what differentiates me from other coaches. But the ICF standards are just critical. And the other thing about the ICF is you have to have 250 hours of continuing education to keep getting the licensure. That’s not a license to keep, you know, being indoors. And so that really raises the bar and enables the coach to really grow because you’re constantly taking a course. Yeah.</p>\n\n\n\n<p>Cory Miller (00:07:02) – So super, super strong. By the way, if you’re listening, you want to look if the coach has ICF certifications and all that, that’s really important, rigorous, rigorous work that they do to keep that up means to me it goes through taking it very seriously their profession.</p>\n\n\n\n<p>Cory Miller (00:07:19) – So Kelly, what is a coach? We’re going to spend some time talking about the times in which coach has been so, so valuable to your clients, to me, and we’re going to share experiences around that. But first, I kind of want to get a baseline of like, what is a coach?</p>\n\n\n\n<p>Kelly Gallagher (00:07:38) – Great question. Mean a coach. I had this conversation this morning at the pool at 5 a.m. Someone said, Oh, you’re going to coach. They just want content. I said, No, that’s not really what coaching is. I’m not really delivering content. I think a coach is someone that walks on a journey with a professional who wants to raise the bar. Um, it can be a life coach too. So then you’re walking the journey with an individual who has an area of life where they want to improve or progress. And that’s still the same formula for going through the coaching process, whether it be an executive or whether it be. Someone who wants to increase communication with their husband or wife.</p>\n\n\n\n<p>Cory Miller (00:08:25) – So, yeah. And part of how we were working together when we first started working together was I was going to the same school you went to, which is fantastic. University of Texas and Dallas and their coaching program is incredible. And being mentored by you. And because I was getting asked when when I left our teams and I was trying to do my own thing, I thought, okay, it’s going to be coaching People go, What is it, Coach? What do you do? And I was like, Oh gosh, I’m struggling with these. But it’s so much that it’s that walking alongside a person on a journey and I like what you added to it, is like they want to raise the bar, they want to do something more. And, you know, I have so much reflected about my business entrepreneurial career for the last 15 years ago. If I had a coach from the beginning, it would have been so much better in many ways. Not just success, success for sure, but also health clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:09:23) – It’s funny you say that, Cory, because even 20 years ago when I was in pharmaceuticals and I was doing very well, had I had a coach, I would have been a rock star because there were rough edges that I couldn’t see. You can’t see them in yourselves the way someone else can who’s actively listening to you.</p>\n\n\n\n<p>Cory Miller (00:09:43) – Yeah. Well, and you know, the parallel we always give is sports. You know the best. Greatest of all time. Athletes have coaches and have people around them. Like you just assume they wake up and they’re just as good naturally. No, they work on their craft. And I think about that so much. Like, I know you work with a lot of high achievers and oftentimes so many of the entrepreneurs I’ve worked with very high achievers too. I’ve had the pleasure of having people on my team big time, high achievers. And you just go, like, if you really want to do well in what you’re doing, you need to have somebody that’s on your side.</p>\n\n\n\n<p>Cory Miller (00:10:23) – Nobody does it alone. I think that’s the fast that we perpetuate in our culture and especially in business, like with entrepreneurs, is like, Oh, I’m the rockstar. I do this by myself, that you got these icons out there. You know, Steve Jobs is the one you hear over and over and over 100,000 times. You go, He didn’t do it alone. No, there’s no way you can do it alone. And having someone in your corner that’s helping you perform at the highest level is so critical.</p>\n\n\n\n<p>Kelly Gallagher (00:10:54) – Yes, I agree. And, you know, oftentimes people will also say, well, isn’t it like therapy? I would call it therapy. Ten x. Because therapy’s great and I think everyone should go through that process at some time in their life. I really believe in it. But at some point it’s limited because it’s just keeps moving into the past and feelings and often sad feelings. Whereas coaches moving the person forward so high achievers get bored in therapy after a while, after a while, and they might go back and forth to therapy.</p>\n\n\n\n<p>Kelly Gallagher (00:11:34) – But generally they find that coaching helps them because it’s goal oriented.</p>\n\n\n\n<p>Cory Miller (00:11:39) – Yeah, well, and I know there’s a big distinction between therapy and coaching and really, you know, really try to their distinct things. And oftentimes probably you have taught this mentioned like therapy is looking back, coaching is looking forward. Is that how you kind of see that?</p>\n\n\n\n<p>Kelly Gallagher (00:11:56) – Yes. And you know, as a coach and a credentialed coach, I’m ethically bound if I feel like someone continually goes into therapy. Waters and themes, um, I’m bound to refer them on to therapists till they are more stabilized. And then oftentimes a lot of my clients are in therapy and coaching together. They really work well hand in hand.</p>\n\n\n\n<p>Cory Miller (00:12:22) – Yes. In fact, for the bulk of the time right now, I am not currently seeing a counselor, however, for the last see two months, but for the bulk of the time we’ve worked together have had a counselor and a coach. So I think their yin yang, their.</p>\n\n\n\n<p>Kelly Gallagher (00:12:41) – Right. And the people that come to me and have had some therapy, even if it was limited, they have just a little bit more self awareness.</p>\n\n\n\n<p>Kelly Gallagher (00:12:49) – So coaching progresses faster.</p>\n\n\n\n<p>Cory Miller (00:12:52) – Yeah. If you’re doing your work to.</p>\n\n\n\n<p>Kelly Gallagher (00:12:55) – Because other otherwise get clients. Sometimes we’ll say, Well, what does it matter how I’m feeling about this? Well, it matters a lot because, you know, your heart is just as involved in these decisions and actions and creative things you’re asking yourself to do as the frontal lobe of your brain. So they are connected.</p>\n\n\n\n<p>Cory Miller (00:13:14) – Yeah. Okay. So we talked about what coaching is a little bit we talked about the distinctions, therapy versus coaching and how they’re additive and can exist together. And in fact, or even better sometimes, oftentimes, especially in my experience, I would say. Well, I’m curious, Kelly So I know my own personal experience is related to our coaching professional relationship. But I’m curious, what are the times you you see people getting into the meat of this kind of conversation between us is like, what are those times when people go, okay, they’re thrust out to go actively look for a coach and end up, you know, in a in a room or a meeting with you.</p>\n\n\n\n<p>Kelly Gallagher (00:13:55) – I would say that generally there’s some type of struggle. It can be a conflict at work. That’s a huge one because that dips into, well, do I want a career change? And sometimes people come and they don’t know what they want. They’re just not happy. Um, people who want to progress with that and find meaning and integrate what they’re learning about themselves will come to coaching because that process. It really it’s like turbocharging the job search and turbocharging people to take interviews and move on and move up without really any kind of formal instruction to just that self-awareness that it builds. So that’s one of the big ones. Um.</p>\n\n\n\n<p>Cory Miller (00:14:44) – Let’s talk about struggle for a second. So struggle back to that. So is that so you mentioned a couple of factors there. I want to hit both sides. One is maybe I need to make a change, like move out of what I’m doing. But there’s another one, which is maybe I want to get promoted or have been promoted or, you know, within an organization to and I’m curious your experiences around around that too.</p>\n\n\n\n<p>Cory Miller (00:15:10) – So I like that it starts with like there’s some kind of struggle and they’re seeking outside perspective and help support with that. But it starts with some things they’re trying to change and wrestling against. Sounds like.</p>\n\n\n\n<p>Kelly Gallagher (00:15:24) – Right? And many times, you know, when you’re in a new position or you’re in a position where you are striving to do something else within that company, you will conform to their expectations and almost wear a mask. The to the degree that you lose something in the translation because then you’re not really connecting with your creative side or your problem solving side or your heart. And so a lot of work can be done to find that balance for people. The other thing that touches on is fear of failure. Your fear of failure is. It’s just a sweet spot because so many. Points of wanting to change. If we whittle down and we go with the client, what’s beneath that? What’s beneath that or what’s beneath that? And we get down to the core or the middle of the onion. It’s fear of failure.</p>\n\n\n\n<p>Kelly Gallagher (00:16:19) – And that’s that’s just a part of being human. No one wants to humiliate themselves or fall down. But I think, too, in our society, think about schools nowadays. Everyone’s given a trophy. Soccer, Everyone’s campaigning, trophy swimming. Everyone makes the team. No one’s not on the team. Great. So children are raised to not really fail or understand that they founded something and think in a way, I like the philosophy, but in a way I think I see a lot of young adults who come out into the world and they are terrified of not getting a trophy of not. And the reality is, in real life, you don’t get that many trophies.</p>\n\n\n\n<p>Cory Miller (00:17:06) – Yep. Well, we that was that fear of failure thing. We, we talked our last coaching session about that specifically and totally like, you know, when you’ve especially if you’ve been accustomed to winning, doing succeeding and then you hit some failures and or trying to do anything big and new, take that next job, start that new endeavor, whatever that is, and that, you know, oh, this is not a guaranteed success.</p>\n\n\n\n<p>Cory Miller (00:17:35) – So that that definitely resonates.</p>\n\n\n\n<p>Kelly Gallagher (00:17:37) – Right? And if I fail, that also relates to a further theme of then the fear of being actually seen for who you are. Um, yeah, it’s a heavy topic and it can take a while to work through, but it’s, I think most of my clients will say that’s valuable work. And it’s not that they become fearless, but I think they’re able to notice the emotion name and then kind of negotiated.</p>\n\n\n\n<p>Cory Miller (00:18:08) – Yeah, you mentioned the word emotions. And I think when I first started working with you, I didn’t I didn’t go to that realm. I was, you know, okay, more intellectual thinking process and stuff. And you’re extremely helpful with that. And probably because of some of the, you know, understandings between therapy and coaching or misunderstanding to say, I didn’t really get into that. But I think our best work has come with the emotions. Like my my definitely I’ve benefited every time we’ve talked. I’ve been better for it. However, I think the most profound times is when we get into, okay, I’m doing this thing.</p>\n\n\n\n<p>Cory Miller (00:18:48) – It’s an event, like you said, a struggle or something new or a change or something I’m preparing for. But then okay, the emotion around that and understanding that and leveraging, you know, really deep dive into that where I’m trying to improve. I can’t remember how many times you’ve said to me, okay, well they are not in this call. What is the what about you? And I was like, Oh man, doing that hard work, which is made I know it’s made me better as a professional and a leader for sure, because oftentimes you kind of redirect back to me and go, okay, well, they’re not here. Let’s talk about what this means to you, for you. And I’m always like, Well, let me take a deep breath on that one.</p>\n\n\n\n<p>Kelly Gallagher (00:19:31) – That’s a hard one. I learned that actually didn’t learn that at Utd or anywhere. I learned that as a young rep out in the field and I complain about these idiot customers. Right? And the manager told me once, he said, Turn your rearview mirror to your face.</p>\n\n\n\n<p>Kelly Gallagher (00:19:48) – And I didn’t. He goes, Now look at that. That’s the person that would have to change. The client’s not going to change. And it was the most profound thing. It kind of hurt my feelings, but it was so true.</p>\n\n\n\n<p>Cory Miller (00:20:01) – Well, I’ve talked through everything with you from partner team issues, all that. And it’s been so helpful because I think oftentimes kind of thinking, okay, yeah, they’ve got to change. There’s something with them. And the real work, profound and deep, that continues to get deeper is what does that mean for me about me? What do do I need to change something and what is that? And those are the times really in reflective work that I go, okay. And more and more I think I’m getting it. Or I go, okay, So something I’m not aware about myself potentially pointing outwards and then going, I kind of need to turn the rearview mirror back to myself.</p>\n\n\n\n<p>Kelly Gallagher (00:20:46) – Back to your face? Yes.</p>\n\n\n\n<p>Cory Miller (00:20:48) – It’s not the easiest thing to do, but I’m glad you do it.</p>\n\n\n\n<p>Kelly Gallagher (00:20:50) – It’s not the easiest thing to do. And in periods of conflict or intense conversations with bosses or calling people, you’re supervising, it’s extremely hard to stop yourself and say, wait a minute, who am I? And yeah, it’s it’s really, really hard. But I think as people progress in coaching, they become almost a coach within themselves.</p>\n\n\n\n<p>Cory Miller (00:21:16) – Yes. Yes. I can hear you quite a bit doing that.</p>\n\n\n\n<p>Kelly Gallagher (00:21:21) – Yeah. Oh yeah. So that would be my goal is that when I’m not there because I’m not there all the time and I don’t know of it, even though I know so much, I don’t know all of it. But my goal would be when that person’s gone for a week or they’re in a high stress situation, they’re able to somewhat coach themselves through it.</p>\n\n\n\n<p>Cory Miller (00:21:44) – Absolutely. Well, okay. So we talked about like the struggle conflict. Something’s going on there. Want to do reach something new? Maybe they’re evaluating a big change. I mean, that resonates with me. I was that’s how we kicked off our thing.</p>\n\n\n\n<p>Cory Miller (00:21:59) – It was like I was changing my profession career very substantially, knew I was going to be leaving the company I started. And, you know, okay, here’s a totally new avenue and having somebody to talk that through the fear of failure, the emotions of being an achiever, especially a high achiever, trying to do something in the world like an entrepreneur, what are some other things that you you see often in your coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:22:27) – Well, I would say the other thing, the theme is some type of organizational change, because your organization, of course, they’re always changing. And there are new standards that people don’t. We talked about that before we went on tape that sometimes people don’t like change. So being able to go in and help a person challenge their assumptions about the change really recognize within themselves the any negative thinking loops or or extra baggage they’re bringing in the situation and then thrive throughout the change would be a big thing. Um, and as they go along to they learn about themselves and then to integrate that learning.</p>\n\n\n\n<p>Kelly Gallagher (00:23:12) – Back into the organization. That’s changing because change is constant. Yep. I don’t think I’ve ever been in an organization in 30 years that wasn’t doing some type of change. It’s almost never stay.</p>\n\n\n\n<p>Cory Miller (00:23:31) – It’s yeah, absolutely. Well, there’s two things I think about when we’ve worked together and what I know of coaching too. It’s it’s the word change that you said. Some change. Big change oftentimes big change. The other side of the coin for me is performance.</p>\n\n\n\n<p>Kelly Gallagher (00:23:47) – So yeah.</p>\n\n\n\n<p>Cory Miller (00:23:49) – Continual performance. So like and I think about those listening in why you won’t get you want to get coaching for yourself and your team is that performance factor like it’s an investment back into yourself or your team if you’re providing coaching. I think some great organizations, particularly in WordPress I’ve heard of because I’ve referred people to you that happen to be in WordPress. I go, Oh, I love the forward thinking of that. You’re going, it’s an investment in their people, but the performance side. So we’ve talked a lot of some about this change side.</p>\n\n\n\n<p>Cory Miller (00:24:24) – There’s something going on and how we wrestle and adapt to that change where we talk about motions and different things and then but the other side to me is like, I can’t remember how many times I call it performance, but what I think it is, is like preparation. I mean, some of the biggest deals I’ve done in five years have been rehearsed, practiced, polished, perhaps even with you. And gosh, I didn’t have that my previous ten years. And I thought, wow, I went into so many situations. I thought I had done my preparation. But doing it with you with a coach was made things so much better, I think, through that process. Kelly It also eliminated like things I wasn’t aware of, things I hadn’t thought about, and just an approach to get some, like, clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:25:12) – Flirty, some big one. And I think that goes into the third bucket of communication skills. Just people sometimes come to me and in her struggle or there’s conflict or they’re going into a big sales promotion and they’re not quite sure how to go about it.</p>\n\n\n\n<p>Kelly Gallagher (00:25:29) – So that would all fall into the bucket of communication skills. And that that’s a big one. I don’t think oftentimes people think they’re coming across one way, but it’s quite different if you’re observing them. The other thing is. They, you know, like you said, you’ll rehearse. And rehearse. But when you get in that situation sometimes. Hopefully you’re primed with enough rehearsal to lean back. If you forget what you’re going to say, you can lean back into the gist of it. So I think for performance, though, it comes down to communication skills and confidence, because in selling some time it’s not what you said anyway, it’s how you said it. And you can walk in if you say it with conviction and you have that internal clarity, as you mentioned, and conviction. The little wordsmithing and nuances of it aren’t going to matter. They’re going to matter. But the big the capital A to achievement or performance is how you set it.</p>\n\n\n\n<p>Cory Miller (00:26:36) – Well, I didn’t say this in the beginning, but we we now meet twice a week and we’ve I think we’ve met twice a week for the last year or two.</p>\n\n\n\n<p>Cory Miller (00:26:44) – And that was out of, oh, I need these times. We’re kind of booking them at the front of the week and the end of the week. But oftentimes I realize so many times it’s just seeking clarity for myself and those of us who are leaders out there trying to give a clear vision to somebody else, I’ll just say it. Maybe other leaders just wake up with clairvoyant vision. I don’t. I need rehearsal. I need work. I need to bounce it off people. I need a coach to help me kind of ask questions, think, think it through. And every single time I’m better. I remember some of the biggest ones that I’ve, like, talked to you. And it’s not even one session, maybe 2 or 3. They end up talking about it. But I go, Gosh, if I hadn’t had that, I would have made so many mistakes going into that big decision or time of presentation, whatever that was. And I’m so better for like I just need to practice and realize I couldn’t just do that.</p>\n\n\n\n<p>Cory Miller (00:27:40) – I needed someone else to help me. And that’s where you’ve come in and done that. And so clarity for me is like when you say, what? When people would ask me, What’s the biggest takeaway for coaching? I go clarity and what is clarity? Build what you said confidence. And those two alone have made me a better leader. That’s why I can say, let’s just go back to the start of my career. If I’d had a coach, it started my career. Everything would have been better because I’ve been more clear, more confident.</p>\n\n\n\n<p>Kelly Gallagher (00:28:03) – Being a millionaire ten times over just had a coach because I did so many stupid things along with the good things. That you don’t know, but you do learn from failure. You do learn. Oh, and so, you know, maybe not, but I sure would have liked to have a coach. It is a perk for high performers. If if if you if it’s a if there’s an employer listening in and they’re thinking of who does that need coaching? Yes, it can be remedial, but sometimes then it’s not the employees idea.</p>\n\n\n\n<p>Kelly Gallagher (00:28:34) – The high performance will progress the fastest because it generally will be their idea. They want that perk and they want to grow a career.</p>\n\n\n\n<p>Cory Miller (00:28:44) – This is my personal opinion, not Kelly. So I want to be clear about that. But I’ve been around organizations that use coaching as remedial, and I go, Then what happens is coaching gets stigmatized within that organization of if you’re not performing and you’re doing a crappy job, you’re going to get sent. And it has a negative tint to coaching, which is not what it’s supposed to be. It’s supposed to be progressing positive, helping improving, navigating situations. And this one organization in particular, it’s like that’s how they use coaching. I go, Oh man, Like, then they then all these high performers have this worry about it and don’t want to potentially go into coaching and miss this incredible benefit to what coaching is.</p>\n\n\n\n<p>Kelly Gallagher (00:29:31) – That’s so true. There’s someone at my door. Can I. Can we pause?</p>\n\n\n\n<p>Cory Miller (00:29:36) – Yeah.</p>\n\n\n\n<p>Kelly Gallagher (00:29:45) – Yeah, we’re talking about, like, high performers and performance coaching. And I do want to make the point that that’s kind of what I think is my differentiator is that I have all that coaching training, but also I’ve been in the business world for 30 years selling. So if someone asked me about that, it’s easy for me to switch out. Yeah, most coaches have like a background, so they’ve never really had to go out into the world and perform, right?</p>\n\n\n\n<p>Cory Miller (00:30:17) – Yeah. You bring both sides to that coin I think is incredibly helpful. Like I’ve talked so much with you about cells because it’s a weak area. I feel like it’s a weak area for me, but something I’ve had to do but forced to do and now trying to begrudgingly trying to do it. But I know you’ve got such an extensive sales background, business development background that totally leveraged that. In fact I think that’s how our two times a week started was a sales academy where it wasn’t necessarily coaching, it was more like sales coaching.</p>\n\n\n\n<p>Kelly Gallagher (00:30:47) – Right. And it’s very hard for someone to coach you if they haven’t walked down the street, guide you down the path. If I’ve never been on it, I can coach and I can move you in many ways, but can’t exactly help you to perform because I don’t know how to perform. So I think that is the differentiator in my coaching style as I’ve been there. I’ve been in sales meetings where I got humiliated. I’ve had clients slam doors in my face. You know, I’ve executed $1 million contract. So. I just think it helps me to bring more to the party.</p>\n\n\n\n<p>Cory Miller (00:31:25) – Yeah. And you understand the complete picture. That’s why, you know, our community is a lot of founders and a lot of high achiever leaders. You know, I’m curious your thoughts about entrepreneurship, entrepreneurs and coaching. You know, I don’t know your risk, your client base, but I am one. I know I’ve benefited from incredibly navigating change, big decisions and the performance side. But what do you say to entrepreneurs about coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:31:58) – I’d say it’s essential because of everything we’ve talked about in the end.</p>\n\n\n\n<p>Kelly Gallagher (00:32:04) – As an entrepreneur, you’re alone, right? That’s what it is. That’s the gig. You might have a few people on your team, but generally you’re alone. It’s very hard to win deals in isolation. So I would say having a business coach is key to moving forward. Not only in all the things we mentioned, the clarity, the communication, the conflict, the struggle, but then sometimes you just have to go execute. And so for me, it’s very helpful because I’ve been in that sales situation so many times and understand features, benefits. I understand how to extrapolate from a client what’s going to really matter and what’s not. And I can help people with their slide deck or, you know, whatever it is they want to. So I will generally I can come in in that regard like we do and be a consultant on Friday, but a coach on Mondays. And then and most of my clients who are entrepreneurs use me in that way. Like they will sometimes just bring us like back or we’ll practice a presentation or they’ll practice what they’re going to say to their team before they say it.</p>\n\n\n\n<p>Cory Miller (00:33:18) – Yep.</p>\n\n\n\n<p>Kelly Gallagher (00:33:18) – Get some clarity around it to understand. How they’re feeling in that moment of saying these wonderful things they think are are going to move the team. And sometimes they come out of the meeting and they’re going to say something completely different. Once we do the coaching, it’s not that I ever told them to say anything different, but we, you know, polished it. Let’s say, you know, they come out with this big chunk of coal and they leave and they’ve got a little diamond and it’s polished. And like you said earlier, they feel confident.</p>\n\n\n\n<p>Cory Miller (00:33:50) – Maybe there’s some entrepreneurs that that come fully birthed into the whole process, but most of us have to learn it and grow through it. What I’m hearing, though, you know, big decisions, big challenges, big changes, and then the performance side preparation, Polish getting ready for those big things, too. And then the simply put, just trying to make the most of the opportunity. That’s what I think about. Like so many high achievers that go with an entrepreneur’s, like we have an opportunity.</p>\n\n\n\n<p>Cory Miller (00:34:24) – We often like my my story is I stumbled into it, stumbled into it and go, wow, I have this amazing opportunity. So much with business. You go like, it’s right timing, it’s right place, right people, right, partners, all the things that have to go together for something to go really well. And then you go, I want to make the most of that. And that’s my reflection, is that I had an opportunity. I wanted to seize that opportunity to make the most of it. Now, seeing, Oh, wow. Now I did have a coach during about half of my business time, invaluable to help us with the organization. But I go like having someone that this is why we keep working together as I go. I just need it. It’s just a part of making the most of who I am and my opportunities that come my way to to do even more. And it’s not necessarily just about money, but it’s about making the most of the opportunity.</p>\n\n\n\n<p>Kelly Gallagher (00:35:18) – Right.</p>\n\n\n\n<p>Kelly Gallagher (00:35:19) – And Joy, while you’re doing you we haven’t even touched about that. But there’s that personal happiness factor and a lot of my clients either are working out or I have them. I try to persuade them to start a fitness program while they’re with me. But that joy, that love of what you’re doing, you know, if it’s not there, it’s very hard to perform on your.</p>\n\n\n\n<p>Cory Miller (00:35:43) – Yeah. And you’ve been such a good coach and you walk that talk. Kelly was telling me before we started the recording that she just ran a mile and swam, and I was like, Gosh, you overachiever. But it’s such a good inspiration for me for sure, because that other aspect of just life and business and everything is just being physically healthy. And you are a great encourager and you walk your talk.</p>\n\n\n\n<p>Kelly Gallagher (00:36:07) – I try. I try. I try. I mean, no one’s perfect. But yeah, I definitely try. And I also find because I work out a lot and I’m more effective for people because, you know, it brings all that blood flow to the brain.</p>\n\n\n\n<p>Kelly Gallagher (00:36:20) – So I shared with Cory that sometimes in between clients I’ll just run up the hill outside my house 4 or 5 times just to sharpen myself for the next person because I can feel it within myself. Then I come in their house and I’m all happy again and I’m feeling creative and supercharged and ready to go.</p>\n\n\n\n<p>Cory Miller (00:36:41) – Oh yeah. You can tell what the energy you have for sure. Well, Kelly, thanks so much for taking the time to talk to us about what you’re doing. Share a little bit of the experience. I mean, they resonate with me. Everything you’ve talked about are things that we’ve worked on in our coaching sessions, and I’ve been better for it as a person on Earth, as a human, on earth, as a business entrepreneur, leader, all those. But anything else that you want to share that we didn’t get to talk about?</p>\n\n\n\n<p>Kelly Gallagher (00:37:09) – No, I mean, what you just said, that’s what I live for. That’s my passion is did I, you know, did I help someone? Did they feel better after we, you know, did we move the bar? And I just live for success stories.</p>\n\n\n\n<p>Kelly Gallagher (00:37:23) – And I find it so much more rewarding than just pure sales. Although I would have argued back then that I was making people’s lives better because I had a terrific product or whatever, but somehow that what you just said, just seeing personal growth in other people, I just kind of live for that. So thank you.</p>\n\n\n\n<p>Cory Miller (00:37:43) – Bet. Well, thanks, Keller, for being on. And thanks, everybody, for listening. We’ll share in the show notes how you can get a hold of Kelly if you’re interested in talking more with her. She’s fantastic. Coach, you can’t. I’ve referred you numerous times to people that now I believe are our regular clients with you. And we they’re defensive minded and we always talk like, yep, I just had my Kelly session, just had my Kelly Sessions, so.</p>\n\n\n\n<p>Kelly Gallagher (00:38:08) – Well, thank you for doing that. Yes. I don’t really advertise. I haven’t ever. I only did maybe in the first year. But I think that’s the other thing. Good coaches just kind of get referrals and.</p>\n\n\n\n<p>Kelly Gallagher (00:38:21) – That’s the way it should be.</p>\n\n\n\n<p>Cory Miller (00:38:23) – You do. All right. Thanks, everybody, for listening to Post Status Draft. It’s been another episode kind of went out of our league but love to introduce people that have made an indelible difference in my life and to share their wisdom. So we’ll see everybody next time. Thank you.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 19 Aug 2023 03:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";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:97:\"Post Status: WordPress 6.3 RC2 • Synced Patterns • Internationalization • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/wordpress-6-3-rc2-synced-patterns-internationalization-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/wordpress-6-3-rc2-synced-patterns-internationalization-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24701:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 25, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">We’re under two weeks away from WordPress 6.3 release. Have you started testing? Big changes are envisioned for the Media Library, Admin Dashboard, and more. You have an opportunity NOW to share ideas. What considerations do we need to account for? Read the Phase 3 post from Matías and share your feedback in the comments.… </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Reusable Blocks, Phase 3, i18N</h2><p class=\"kt-blocks-info-box-text\"><br /> <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a><br /><br />3⃣ <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br /> <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a><br /><br /> <a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">WordPress 6.3 Live Product Demo – Highlights & Recording</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-29 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-34 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-32 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-july-12-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/a-week-in-core-july-24-2023/\">A Week in Core – July 24, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Beyond block styles, part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\">Make your site’s typography make a statement</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/whats-new-for-developers-july-2023/\">What’s new for developers? (July 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/how-to-modify-theme-json-data-using-server-side-filters/\">How to modify theme.json data using server-side filters</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/core-editor-chat-summary-26th-july-2023/\">Core Editor chat summary: 26th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/dev-chat-agenda-july-26-2023/\">Dev Chat agenda, July 26, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/24/online-monthly-docs-team-contributor-day-july-25-2023/\">Online monthly Docs Team Contributor Day July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/documentation-team-update-july-24-2023/\">Documentation Team Update – July 24, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/hosting-team-meeting-agenda-2023-07-26/\">Hosting Team meeting agenda 2023-07-26</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/07/20/matrix-chat-summary-july-20-2023/\">Matrix chat Summary – July 20, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/26/mobile-team-update-july-25th/\">Mobile Team Update – July 25th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/25/community-meeting-recap-2023-07-25/\">Community Meeting Recap (2023-07-25)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/24/last-week-openverse-2023-07-17-2023-07-24/\">A week in Openverse: 2023-07-17 – 2023-07-24</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/performance-chat-summary-25-july-2023/\">Performance Chat Summary: 25 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/plugin-review-team-24-jul-2023/\">Plugin Review Team: 24 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/26/agenda-weekly-polyglots-chat-july-26-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – July 26, 2023 (07:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/07/wp-contributor-mentorship-program-support-team-onboarding-meeting/\">WP Contributor Mentorship Program: Support Team Onboarding Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/agenda-for-july-27th-support-meeting-2/\">Agenda for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/27/sustainability-chat-agenda-july-28-2023/\">Sustainability Chat Agenda, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/test-team-update-24-july-2023/\">Test Team Update: 24 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/26/themes-team-meeting-notes-july-25-2023/\">Themes Team Meeting Notes – July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/25/themes-team-update-july-25-2023/\">Themes team update July 25, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/07/26/training-team-meeting-recap-25th-july-2023/\">Training Team Meeting Recap – 25th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/25/call-for-volunteers-to-help-with-6-3-learn-wordpress-updates/\">Call for Volunteers to help with 6.3 Learn WordPress updates</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/improving-website-performance-with-caching/\">Improving website performance with caching</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/installing-node-js-and-npm-for-local-wordpress-development/\">Installing Node.js and npm for local WordPress development</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-exploring-some-of-the-new-6-3-wordpress-features\">APAC: Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=exploring-some-of-the-new-6-3-wordpress-features\">Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=onboarding-to-test-team\">Onboarding to Test Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3-developer-edition\">Testing WordPress 6.3 – Developer edition</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-3\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-2\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=mentorship-program-introduction-to-the-wordpress-open-source-project\">Mentorship Program: Introduction to the WordPress Open Source Project</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-4\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-3\">What is the Domain Name System?</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-malaysia-2023-is-looking-for-speakers-and-sponsors/\">WordCamp Malaysia 2023 is Looking for Speakers and Sponsors</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-masaka-2023-celebrating-inclusion-diversity-and-innovation-with-wordpress-in-ugandas-pearl-of-africa/\">WordCamp Masaka 2023: Celebrating Inclusion, Diversity, and Innovation with WordPress in Uganda’s Pearl of Africa!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 19 Aug 2023 03:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";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:72:\"Post Status: The WP Agency Journey with J.J. Toothman of Lone Rock Point\";s:7:\"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:82:\"https://poststatus.com/the-wp-agency-journey-with-j-j-toothman-of-lone-rock-point/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://poststatus.com/the-wp-agency-journey-with-j-j-toothman-of-lone-rock-point/\";s: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:47031:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> interviews <a href=\"https://twitter.com/jjtoothman\">J.J. Toothman</a>, owner of <a href=\"https://lonerockpoint.com/\">Lone Rock Point</a>, a WordPress agency based in Sudbury, Massachusetts. J.J. shares his agency journey, discussing the growth of his agency and its remote-first approach.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Episode Highlights:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li><strong>The Growth of Lone Rock Point</strong> [00:00:32] JJ discusses the growth of his agency, Lone Rock Point, from 4-5 people in spring 2020 to 16 people now.</li>\n\n\n\n<li><strong>Remote-first Approach</strong> [00:02:29] JJ talks about adopting a remote-first organizational structure from the beginning and how they didn’t miss a beat when the pandemic hit in 2020.</li>\n\n\n\n<li><strong>Focus on Public Sector and NASA</strong> [00:04:02] JJ explains his background in government contracting and how his agency focuses on working with the public sector, particularly in the federal level, including clients like NASA.</li>\n\n\n\n<li><strong>The federal government ecosystem</strong> [00:11:29] Discussion on the ecosystem and governance of federal government agencies, including guidance and policies.</li>\n\n\n\n<li><strong>Starting Lone Rock Point</strong> [00:13:39] JJ’s decision to start his own agency after exploring side hustles and feeling the desire to be more entrepreneurial.</li>\n\n\n\n<li><strong>Niching down to WordPress</strong> [00:18:25] The growth and success of Lone Rock Point after focusing on WordPress as their main service offering.</li>\n\n\n\n<li><strong>Topic 1: Using WordPress as a Content Management System</strong> [00:22:17] Discussion on using WordPress as a content management system and adapting WooCommerce for check payments.</li>\n\n\n\n<li><strong>Topic 2: WordPress and the Public Sector</strong> [00:22:58] Exploration of using WordPress in the public sector, particularly in government agencies like NASA, for managing and publishing content.</li>\n\n\n\n<li><strong>Topic 3: Web Modernization Project with NASA</strong> [00:28:26] Overview of a web modernization project with NASA, including evaluating different CMS options and deciding to invest in WordPress.</li>\n\n\n\n<li><strong>The SEO and Accessibility Tools in WordPress </strong>[00:32:35] Discusses the real-time analysis tools in WordPress for SEO and accessibility, such as Yoast, and how they differentiate it from other CMS platforms.</li>\n\n\n\n<li><strong>The Resources and Knowledge Sharing in the WordPress Community </strong>[00:34:57] Explains the abundance of resources, knowledge sharing, and community support available in the WordPress ecosystem compared to other CMS platforms.</li>\n\n\n\n<li><strong>The Importance of Open Source and User Experience in WordPress</strong> [00:37:11] Highlights the significance of open source adoption in the public sector and how WordPress’s user experience and inclusivity differentiate it from commercial solutions.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/a2-hosting\">A2 Hosting</a></h3>\n\n\n\n<div class=\"wp-block-columns has-theme-palette-8-background-color has-background is-layout-flex wp-container-37 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n\n\n<p>A2Hosting offers solutions for WordPress and WooCommerce that are both blazing fast and ultra-reliable. WordPress can be easily deployed on ANY web hosting plan from A2: Shared, VPS, or Dedicated. A2 also offers Managed WordPress and WooCommerce Hosting. Take a look at a2hosting.com today!</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<img width=\"752\" height=\"470\" src=\"https://poststatus.com/wp-content/uploads/2022/08/imageedit_1_6433774706-752x470.png\" alt=\"A2 Hosting\" class=\"wp-image-104073\" />A2 Hosting\n</div>\n</div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\"> Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://lonerockpoint.com/\">Lone Rock Point</a></li>\n\n\n\n<li><a href=\"https://wordpress.com/\">WordPress </a></li>\n\n\n\n<li><a href=\"https://www.nasa.gov/\">NASA</a></li>\n\n\n\n<li><a href=\"https://automattic.com/\">Automattic</a></li>\n\n\n\n<li><a href=\"https://wpvip.com/\">WordPress VIP</a></li>\n\n\n\n<li><a href=\"https://www.fedramp.gov/\">FedRAMP</a> </li>\n\n\n\n<li><a href=\"https://wpvip.com/partners/\">WordPress Agency Partnership Program</a></li>\n\n\n\n<li><a href=\"https://www.rtx.com/\">Raytheon</a></li>\n\n\n\n<li><a href=\"https://www.nasa.gov/ames\">Nasa Ames Research Center</a></li>\n\n\n\n<li><a href=\"https://www.recodingamerica.us/\">“Recoding America”</a> by <a href=\"https://twitter.com/pahlkadot?lang=bn\">Jennifer Palka</a> </li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://en.wikipedia.org/wiki/Main_Page\">Wikis</a></li>\n\n\n\n<li><a href=\"https://www.eventbrite.com/\">Ticketfly</a></li>\n\n\n\n<li><a href=\"https://digital.gov/resources/21st-century-integrated-digital-experience-act/\">Integrated Digital Experience Act</a></li>\n\n\n\n<li><a href=\"https://www.drupal.org/\">Drupal</a></li>\n\n\n\n<li><a href=\"https://business.adobe.com/products/experience-manager/sites/aem-sites.html\">Adobe Experience Manager</a></li>\n\n\n\n<li><a href=\"https://wagtail.org/\">Wagtail</a></li>\n\n\n\n<li><a href=\"https://www.contentful.com/\">Contentful</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a></li>\n\n\n\n<li><a href=\"https://atomicdesign.bradfrost.com/chapter-2/\">Atomic Design System</a></li>\n\n\n\n<li><a href=\"https://yoast.com/\">Yoast</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/\">WordPress plugins</a></li>\n\n\n\n<li><a href=\"https://stackoverflow.com/\">Stack Overflow</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/jjtoothman\">JJ Toothman</a> (Owner, <a href=\"https://lonerockpoint.com/\">Lone Rock Point</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:02) – Hey everybody. Welcome back to Post Status Draft. Got another great interview in our agency Journey series and I’m talking with JJ Toothman, a member of Post Status and JJ, Hey, thanks for coming on post this draft and talking about your agency journey story.</p>\n\n\n\n<p>J.J. Toothman (00:00:18) – Hey, thanks for having me. Cory. It’s great to be here. Um, really appreciate everything you do for post status and for the community. So I’m happy to be, um, you know, a member of both. So.</p>\n\n\n\n<p>Cory Miller (00:00:32) – Awesome. Well, we’ve gotten to get to know each other over the last, like, I’d say, what, eight months and hear about some of the work that your agency does. It’s super, super exciting. But can you tell me about the agency where it is now? Team clients kind of work. You kind of do.</p>\n\n\n\n<p>J.J. Toothman (00:00:50) – There’s my dog and wife.</p>\n\n\n\n<p>Cory Miller (00:00:54) – Great introduction.</p>\n\n\n\n<p>J.J. Toothman (00:00:55) – Yeah. Um, so the. So my company is Lone Rock Point and I am located outside of Boston, Massachusetts, in a town called Sudbury.</p>\n\n\n\n<p>J.J. Toothman (00:01:09) – Um, if you know the Revolutionary War history, you remember the Battle of Lexington and Concord and Sudbury borders. Concord. I live about five miles from where Paul Revere was captured at the end of his famous ride to tell everybody the British were coming. Oh, wow. Lone Rock Point. We have grown it to 16 people. You know, 12 of those people are full time. And there’s a handful of of, of part timers. Um, the were distributed all over the place. Uh, I’ve got, you know, some of us are in California, Texas. Uh, Michigan. There’s a few people in around Grand Rapids. There’s people in Florida, a few people around Asheville, North Carolina. And we definitely, you know, adopted a remote first, you know, virtual kind of organization, organizational structure from the very beginning. You know, when when the pandemic happened in 2020, we didn’t miss a beat. You know, our the people that we were working with, you know, just it just continued.</p>\n\n\n\n<p>J.J. Toothman (00:02:29) – It’s weird to look back on that time and think about the, you know, ways that we were able to grow during that time in a period where so many small businesses were were, you know, struggling. But, you know, look back on that time and think about like we, you know, we were, you know, going remote, being virtual. That wasn’t a problem for us. We were ready to do that for the very beginning. And the people we were worked with, like just we just kept working on it, kept asking for more from us. It was actually a period of growth for us. We probably went from, you know, at the beginning of. You know, spring 2020, we were around four people and 4 or 5, and now we’re 16. We became a WordPress agency approximately 15, 16 months ago. Um, and we joined WordPress is kind of a continuation of our work with the public sector when I started my company in 2016. Um, you know that we can talk about the genesis of that, but it was, you know, I was had come from a federal government contracting world and I’ve been working for big companies like Raytheon, um, Perot Systems, Dell and, you know, decided that, you know, I wanted to start my own company, you know, had this, you know, the proverbial entrepreneurial itch that most entrepreneurs feel and just kind of wanted to try that out.</p>\n\n\n\n<p>J.J. Toothman (00:04:02) – So I started to serve this company and wanted to start working. There were two customers that I wanted to work with from the very beginning, and one of those was NASA, which is it’s hard for me to talk about my own journey and the work that we’re doing without connecting to the long history I have working with with NASA. So I use that relationship and that relationship capital that I’ve built, you know, from starting working with them back in as early as 2001. Well, one of my first clients and then one of my second clients, big clients was Automattic. Some people over there that had built relationships over the years came to me and said, Hey, you know a lot about, you know, this public sector world, you know, federal government contracting. Can you help us, you know, with kind of get into that vertical and so help them with some some business strategy around that? I helped them with some security compliance, things they needed to be aware of. And then that relation, you know, that work kind of matured a little bit and kind of ran its course a little bit.</p>\n\n\n\n<p>J.J. Toothman (00:05:15) – And then, you know, as they as WordPress VIP, you know, kind of solidified its it’s standing and it’s got themselves into what’s called the Fedramp marketplace. You know, they came to me and said, Hey, you should, you know, your company, you should we should continue working together. You should join the WordPress Agency partnership program. And that’s something I did, you know, specifically because of our shared interest in working together on public sector opportunities. And, um, you know, that’s, that’s, that’s, that’s really what my company is doing right now is, you know, Lone Rock Point. We are, we’re definitely exploring that intersection of WordPress and public SpaC, public sector, predominantly the federal level of that. You know, there’s a lot of state and municipal stuff opportunities there as well. Um, but we’re, you know, the, the kind of the, when you think of like WordPress and public sector, what I want people to come out of that connection with is is Lone Rock point and so that’s you know that’s work we’re doing with and and work we’re doing with NASA and it’s going we’ve been working on some projects from NASA for the past few years.</p>\n\n\n\n<p>J.J. Toothman (00:06:31) – And it’s it’s really rewarding work. It’s good to feel like you’re contributing to. You know, we’re not civil servants, but we’re definitely kind of contributing to. You know, putting the taxpayer dollars to work, being good stewards of taxpayer money. And we think WordPress has a a role in that.</p>\n\n\n\n<p>Cory Miller (00:06:54) – Excellent. Well, there’s a lot here I want to unpack, but it’s so compelling. Congratulations on your success. Congratulations on what you’ve done in the public sector to take WordPress there. I love hearing stories like yours and our other members doing good work in our world. And I get to I think I’ve told you, I get to brag, Hey, I know the people working on these projects, you know, which is pretty fantastic, and taking WordPress to the Enterprise, but Public sector Spaces is really fantastic as WordPress grows. So okay, I want to I want to thank you for telling us kind of what Lone Lone Rock Point does today. So I heard in there 2016. So I, I had assumed, as we had talked for because of the kind of work you’re doing, you had been doing this particular agency type work for a long time.</p>\n\n\n\n<p>Cory Miller (00:07:49) – But wow, that’s why I say congrats one, Congratulations on your success. But like it’s pretty fast timeline to be able to get to doing an agency to doing this kind of work, I think. But can you take me back like before 2016, you said you were doing enterprise or. Yeah, public sector government, government contracting work. What were you doing before the agency?</p>\n\n\n\n<p>J.J. Toothman (00:08:10) – Before. Before I founded my agency. Yeah. Yeah. So I was, I was a software developer, web application developer. I got hired by Raytheon to work on a contract they had with NASA Ames Research Center. And back in 2001, actually, the thing that the opportunity that kind of brought me into that world was that’s when they first started thinking about like, what do they have to do about website accessibility? So they brought me in there to kind of help, you know, help, you know, mature what they were doing around all that kind of stuff. And it’s been interesting to see what the what where was thinking about this over the last couple of weeks.</p>\n\n\n\n<p>J.J. Toothman (00:08:57) – You know, when I first started working at NASA Ames and started talking about website accessibility and looking at all the various websites and web applications that was that were running at Ames Research Center, which is one of the, you know, field centers that’s part of the the NASA enterprise. Um, there was people were really just they were really resistant to it. They were trying to. They were trying to check the box on it quite a bit. You know, they were just like, What’s the minimum I have to do to, like, just check the box on this and so I can move on. Like it really the the optics of how important that was and just it just being the generally the right thing to do, forget the whole legal requirements of it all that really just wasn’t cemented. And here we are, you know, 20 plus years later where, you know, that’s that’s kind of like at the core of what is happening definitely in the public sector, but in the web in general, just like this, this strong emphasis on making it accessible and available to everybody.</p>\n\n\n\n<p>J.J. Toothman (00:10:00) – You know, I saw how that started, you know, 20 years ago. And it’s it was not the same temperature, both from various from developers, designers, project managers, you know, that whole thing is shifted in very positive ways over the last couple of decades. So I was a software developer there working on various, um, you know, web applications, internal business process type applications, looking at accessibility improvements. Um, and then just kind of grew things over the years, you know, you know, started, you know, started rising the ranks a little bit, like getting opportunities to understand how government projects actually work, how it works, which is a pretty thing. I started participating in proposals that big companies like Dell were doing and responding to government RFPs, which are massive undertakings unto themselves, um, understanding compliance and security regulations that exist in government, in government, and really just kind of understanding how these governments, these government agencies and, you know, as individual as they kind of have their own ecosystems unto themselves, that’s probably not, you know, unique to all various massive, you know, corporate enterprises.</p>\n\n\n\n<p>J.J. Toothman (00:11:29) – You know, we talk a little bit about the WordPress ecosystem now, but these these federal government agencies, they all have their own ecosystems around it. And then they’re also operating in this big federal thing where there’s kind of like this. Um, Jennifer Palka just wrote this great book called Recoding America, and she calls this term friendly fire. So where there’s like things where like the Office of Management, the OMB and General Services Administrations and other offices and agencies within the executive branch and other parts of government are putting together governance and policy around it and how the web should work. Um, and it creates all this types of, you know, these, this guidance and guardrails that you have to adhere to. So that becomes like kind of a larger ecosystem unto itself. So, you know, starting to understand how to work within that type of, um, you know, those types of scenarios and guardrails and boundaries and knowing how to interoperate it all just became, you know, something that started gaining more experience with and more exposure to with and, you know, think it’s been a big, you know, that knowledge is a big part of like why, you know, my company’s positioned and why we’ve achieved some success.</p>\n\n\n\n<p>J.J. Toothman (00:12:44) – You know, working and and gaining some credibility in parts of the public sector and procuring our relationship with with WordPress VIP and, you know, expanding our own opportunities within itself. Yeah, it’s exciting. It’s challenging. Exhausting at times, but it’s also exciting and rewarding.</p>\n\n\n\n<p>Cory Miller (00:13:04) – Yeah. Yeah. I can’t imagine. So just just for clarity. So you’re working full time at Raytheon or were you contract as a software?</p>\n\n\n\n<p>J.J. Toothman (00:13:12) – So a contract means you’re you’re you’re like you’re kind of embedded, so you’re a full time employee and you’re your government contractor working on a contract that, you know, a company like Raytheon or Dell or Booz Allen or Lockheed Martin has with the federal government to deliver services abilities that are part of their requirements.</p>\n\n\n\n<p>Cory Miller (00:13:39) – Okay. Okay. That totally makes sense. So what was that catalytic moment when you’re like, Hey, I’m gonna do this for myself, I’m gonna start my agency?</p>\n\n\n\n<p>J.J. Toothman (00:13:46) – Yeah.</p>\n\n\n\n<p>Cory Miller (00:13:47) – So prompted that. Um.</p>\n\n\n\n<p>J.J. Toothman (00:13:50) – A couple of things. So I left NASA for a while and I went and worked for a company, a music ticketing startup called Ticket Fly.</p>\n\n\n\n<p>J.J. Toothman (00:13:58) – I helped them, like, basically create a network of websites for small independent music venues, um, and help those music venues talk about, you know, what shows were coming, how to buy tickets, you know, when the on sale dates were and all the other, you know, all that content that is basically all about converting into ticket sales. And so I was with was, you know, with them when they were really small. And, you know, it was definitely the startup world and that was really exciting. It was also a bad time for my life. I just had like my my second child and like my work life balance was it was it was pretty bad. Um, you know, working at a small startup like that. So ended up going back to NASA. Um, you know, and just trying to, like, find my footing a little bit. I also wanted to leave California and move relocate back to the East Coast. And I knew that was, you know, being in a place, a large organization like that would offer some flexibility like that.</p>\n\n\n\n<p>J.J. Toothman (00:15:05) – Um, but then, you know, I would say around a decade, you know, ten years ago. I started having this, you know, I started having that entrepreneurial itch again. I started thinking about, like, how fun it was to, you know, move fast at ticket fly and wanted that that feeling again. And so I started, you know, I explored a couple of like side hustles, you know, some small little independent web projects. One of them was like a newsletter to help families spend more time outdoors. And they didn’t really take off. They didn’t really get get some traction. And what I mean by that, it wasn’t necessarily traction from a, you know, where we’re making revenue or gaining customers. We were just like just the balance of of, you know, trying to do do that type of initiative while, you know, having a full time job and also like, you know, having a growing family and all that kind of stuff. And then in but was it was clear that.</p>\n\n\n\n<p>J.J. Toothman (00:16:06) – You know, I was exploring something. And, you know, again, that desire to to like be in more, you know, control of of of my destiny, so to speak, and be entrepreneurial is something I just couldn’t I couldn’t get rid of completely. And it wasn’t happening within big companies like Dell in the way that I wanted to know. I really wanted to be, you know, in control of a lot of decisions that wasn’t in control of, um, and, you know, that’s why people start their own things and, you know, be founders of companies. And, you know, I had dinner with a friend of mine who was also in the government contracting space. He’s like, you know, you’ve been thinking about. And he told me he’s like, You’ve been thinking about all these little product ideas, these digital product ideas, like, you know, just just start a services business, you know, like and that will satisfy your need or the desire. You have to be entrepreneurial and, you know, like, you know, look at balance sheets and think about marketing and, you know, attracting talent and retaining talent and stuff like that.</p>\n\n\n\n<p>J.J. Toothman (00:17:12) – And he was right. He was like, You know what? That’s a really good idea. And within 120 days, I’d like set the wheels in motion to, you know, start Lone Rock Point. Um, and, you know, we, we went from there. So it started in the fall of I started the company in the fall of 2016. It was just me for, you know, a year. And then it was like me and a virtual assistant for like another year. And I, you know, I started under this like this umbrella of like, digital transformation consulting. At the time, I was doing a lot of work with the public sector around cloud transformations. So people were were operating applications and on premise data centers and starting to make that migration into things like Amazon Web Services. And so working out a lot of change management type type projects associated with that. And it all kind of just fit under this like big umbrella of digital and cloud transformation, which, to be totally honest with you, is, is is too vague and too broad and borderline meaningless.</p>\n\n\n\n<p>J.J. Toothman (00:18:25) – You know, if you ask ten different people what digital transformation is, you’re probably going to get ten different definitions of it. Yeah. And so it’s really hard to like, you know, grow a services business out that way is really just like me being a consultant at that point. Um, and it wasn’t until like started niching down into, you know what, like let’s just do this WordPress thing, you know, was I was delivering, um, you know, whitepapers and providing analysis of like how what people should do with like their, their inventory of web applications and advising them on what is and what platforms they should be using. And a lot of times ended up started like you know, making recommendations around WordPress oriented applications, sometimes just building WordPress sites, sometimes using WordPress as an application framework. Um, in over the, in the time I’ve been with NASA. I’ve used WordPress with them and a lot of different ways. We’ve done it in a WordPress network multi-site kind of way for allowing smaller NASA missions and programs and projects to, you know, have their own websites where they all communicate what they’re up to and what their findings are and share what they learned with, you know, with, with interested stakeholders and visitors to their sites.</p>\n\n\n\n<p>J.J. Toothman (00:19:55) – Um, there, there’s been some internal things where needed to like communicate various services as it had to various corners of the agency. So we did like a WooCommerce thing where people can go to a web application, a website and just pick what, what services they want. Like I need, I need some Amazon cloud storage or processing or, you know, EC2 units. And they could apply, they could add all those things to a cart and then say, check out and, you know, check, you know, do a checkout with that and just start getting services provided to them that way. So um, and then, you know, over time it just became clear that like, this is, I keep recommending this, like there’s growth opportunity for me here and then, you know, niching down to being like, we’re going to be a WordPress, a more traditional WordPress agency is really when, you know, the growth started happening and the opportunity started becoming a little bit. And it isn’t just like strategic consulting, it became the execution part of it as well.</p>\n\n\n\n<p>J.J. Toothman (00:21:00) – And the tactics part of it too, and the tactics and execution. We’re all oriented for the most of the time.</p>\n\n\n\n<p>Cory Miller (00:21:06) – Yeah, I’d love to hear these stories because you got, you know, a big career in enterprise and public sector, you know, with your Raytheon and NASA days and then entrepreneurial hit. Okay, want to do this and then seeing you know when you say NASA and WordPress, it just seems like those things should always go together, you know, and that’s what really compelling to me is seeing WordPress more on the public sector enterprise. And now there’s really big institutions in in the US federal government anyway, probably around the world too, but that are starting to use WordPress more and more and leverage it and see that opportunity. Um, so I love kind of how those intersection of things happen. So that lone rock point would kind of exist and grow and then you hit your I was going to ask the question when the WordPress come into play, but you pretty much answered it. So like your 2 or 3 or so, it seems like, hey, we’re going to drill down.</p>\n\n\n\n<p>Cory Miller (00:22:04) – And then when you mention WooCommerce that like that use case for an internal tool within a big organization like that to procure and get resources and things, that’s so compelling. You know, most of my.</p>\n\n\n\n<p>J.J. Toothman (00:22:17) – Career that like, people just wanted that checkout expert, They wanted that. They wanted that experience of like, I want X, Y and Z, I want to add it to the cart and I want to tell you that I want it. And we just, you know, WooCommerce has that option to, you know, just do check payments, right? Which removes the credit card processing out of it. And so we kind of adapted that to, all right, we’re going to send this order to somebody who can fulfill that order via this WooCommerce WordPress system. Um, and, you know, it’s, it’s, it’s, you know, it’s using the WordPress ecosystem at its best, like using it almost kind of as Legos and want this part of it. I want that part of it. I want to, I want to glue them together in this way.</p>\n\n\n\n<p>J.J. Toothman (00:22:58) – And it’s, you know, kind of a no code kind of way around WordPress to solve some, you know, some very simple, narrow use cases. But, you know, my, my journey with WordPress, you know, starts way back in 2007 at my first stint with at Ames Research Center. Um, you know, I was working with all these various scientists and researchers and they just like need a place to like publish my, my research findings and publish my data and, and they, they all one, they all had the same, um. You know, requirements and needs. At the highest level, it’s like I just need a place to put it. And I want to I want to be able to manage it myself in a way. And I don’t know. I don’t know how to don’t know how to code. I don’t know. I don’t have anybody on my team who knows HTML. And so that, you know, that basically introduced the concept of like content management systems into all this back in 2007.</p>\n\n\n\n<p>J.J. Toothman (00:24:03) – And, you know, we were looking at things like wikis at the time and, and then discovered WordPress and around that and just the user experience of someone just, you know, managing their content with that type of, you know, WordPress, CMS, this is like version 2.0 of WordPress, you know, back when they added pages in addition to posts was the real thing. That’s like, oh, this is what this satisfies what everyone’s looking for. They want an easy place just to log into. And you know, they all some of them wanted to start blogging. Some of them wanted to start blogging without knowing that they wanted to start blogging. They just want to share what they know and tell their stories. Um, and then back in 2007, I created this is also the Web 2.0 era where, you know, your blogging was, was kind of heavy in the lexicon back then. And I was I did one of NASA’s first official public blogs on WordPress and, and kind of grew with WordPress, you know, from there that led to the ticket fly work.</p>\n\n\n\n<p>J.J. Toothman (00:25:13) – And so WordPress was kind of always in my DNA, even when wasn’t, you know, it wasn’t like a defined part of what I was, you know, of my, my role description. But my role was in some cases to be strategic and provide advice and provide some roadmaps. And, you know, how do we do things? Give us some give us some guidance here. And a lot of times just said like, well, you don’t have to create a custom bespoke application for this. Just use a content management system like WordPress, you know, teach your users how to how to how to manage using WordPress themselves. And and you go from there. So and the WordPress ecosystem is what makes all that happen mean there’s all these different, you know, there’s all these different plugins and themes and you just kind of integrate it all together, um, you know, in a unique way. And you have a great solution architecture, depending on how you put it together.</p>\n\n\n\n<p>Cory Miller (00:26:08) – What you’re talking kind of way back.</p>\n\n\n\n<p>Cory Miller (00:26:11) – But you know, remember a lot of the solutions that we have now didn’t exist. So, you know, big organizations were having to do like the the internal resourcing that you’re talking about. They’d have to custom code those things or build them because they didn’t exist off the shelf. Then you fast forward and you go, you could take WooCommerce save. I can’t even imagine how much time to kind of do git to feature like, you know, par with that and then take that open source solution and then utilize it and just customize with a with a great agency like you all to figure out what their exact needs are. So it’s it’s great to see how everything has fast forward to. Well, we touched on this. I know we’re going to have more conversations down the road. And and I want to talk more about the public sector and enterprise. And I know we’re talking and we’re going to have some great conversations in the next couple of months about this, because I know you’re passionate about it, about the public sector and bringing WordPress to the public sector, but we’ll save that for another time.</p>\n\n\n\n<p>Cory Miller (00:27:07) – I don’t want to spoil too much of that, but I appreciate so much the journey and what you’re doing. So thank you for telling us that. That’s, that’s that’s incredible. Um, okay. What are you excited about today? What are you excited about today and the future going forward and what you’re doing with the agency and your team and the work you’re doing?</p>\n\n\n\n<p>J.J. Toothman (00:27:27) – Yeah. So a few years ago, the government, Pervez passed a Congress passed an act called the Integrated Digital Experience Act. And within that act is basically it tells all these federal agencies how to modernize their website. So, you know. Obvious things like improve accessibility. They have to be accessible. They have to work on mobile. They. They. You have to have like good search. They should. People should be able to find content there. They also need to be based on user research and user needs. So they’re all logical things within. You know, public sector and it’s all so I’m really excited about that. Be something that initiates or triggers a lot of the work that I’ve been doing for the last couple of years.</p>\n\n\n\n<p>J.J. Toothman (00:28:26) – And so for the last few years I’ve been working on a web modernization project with NASA. It exists for a couple of reasons. It exists. One, because of that idea act. It also exists because NASA has a couple of thousand websites and they don’t want there to be a couple of thousand websites. They want all that information in one website. So we’ve been doing a lot of work with them. You know, that started back in kind of mid 2000, late 2000, and it started with, hey, what should be using for its main, you know, web source, major web properties. And so I spent a year taking a look at the landscape of you know, of all the available CMS’s that are out there, you know, Drupal source site, Adobe Experience manager and then some new newer ones like Wagtail. And then there’s even we even took a look at, you know, some of the software as a service type solutions like Contentful and just trying to understand the pros and cons of Elda.</p>\n\n\n\n<p>J.J. Toothman (00:29:38) – And so we spent a year taking a look at the CMS landscape and acquiring data for it, acquiring evidence of it. And while in my heart, you know, being a WordPress guy, I knew like, you know, WordPress makes a lot of sense here. You know, we it’s still there was a lot of benefit for me to kind of like take a look at like what, you know, all the driving factors for making a decision like that were, um, and you know at the end of it WordPress like was the, the solution, the CMS that NASA wanted to invest in for the future. And that’s what we’ve been working on for the last couple of years. So for the last couple of years we’ve been working on a couple of big. Uh, NASA WordPress projects. And a lot of, you know, I talked a lot about how I’ve been using WordPress and a no code kind of way. This is not a no code kind of way. There was a lot of Gutenberg custom development here.</p>\n\n\n\n<p>J.J. Toothman (00:30:34) – It’s the, it’s, it’s the project that has everything like, you know, an emphasis on SEO, an emphasis on accessibility. There’s a new atomic design system that was created for this. And so the seeing the marriage of an atomic design system and Gutenberg, you know, come to bring all that stuff to life has been really, really exciting. And I’m excited to like for, for, you know, people, you know, interested in what NASA is up to and people interested in WordPress to see the fruits of all this labor that we’ve been working on for the last couple of years and it’s all coming in the next few months. And yeah, so I’m really excited to share that with you and share that with other people in the community.</p>\n\n\n\n<p>Cory Miller (00:31:19) – Yeah, that’s excellent. So I want to take just a minute in sidebar because you did this whole year, you know, one of seeing what’s out there, seeing what the options are. And I love that you’ve done some deep, deep research for big organizations trying to make a big, important decision on it.</p>\n\n\n\n<p>Cory Miller (00:31:36) – Um, I’m just curious what we’re couple takeaways. As you just surveyed the landscape. You know, we love WordPress. We understand, you know, we, we support WordPress, but, but we know that there’s a lot of stuff out there. Um, but I’m curious, what, what did the landscape look like? Where were some of the things you saw when you looked at the other platforms you mentioned like Wagtail? I hadn’t heard that one before. I’ve heard of Contentful for instance, and of course Drupal. But what, what were a couple of the takeaways on that year of investigation out there?</p>\n\n\n\n<p>J.J. Toothman (00:32:08) – So the I, I would say that there are two major, maybe three major differentiators that separated WordPress from the rest from the rest of the pack. If you will. Um, you know, there’s a lot of great content management systems out there. You know, they all do the same thing or try to do people the same. They try to make it easy for people to publish information onto the web and make it easy for others to consume it.</p>\n\n\n\n<p>J.J. Toothman (00:32:35) – But the differentiators from WordPress versus the other CMS that we were looking at were number one. A lot of again, it had a lot of it had to do with the ecosystem. WordPress was the only CMS that had real time analysis tools around SEO. So and accessibility to kind of try to improve those situations before the point of publishing. So Yoast is the obvious example. So Yoast, you know, we’ve all been exposed to Yoast. Yoast allows you to allows the content creator user to be authoring and editing content and getting some real time analysis about how friendly or compatible, whatever the term you want to use it is before the point of publish. There’s accessibility tools out there that do the same things that are kind of integrated within the WordPress Admin WordPress dashboard that allow that content creator user to like, you know, when it’s in draft format to analyze. Do I have accessibly accessible content that I’m about to publish in here and make live other CMS didn’t have that baked in. You know, there’s WordPress plugins that do these things.</p>\n\n\n\n<p>J.J. Toothman (00:33:51) – Um, we could even, we even have the ability to prevent publishing until certain excessively thresholds and SEO optimization thresholds are met. That was really, really attractive. All the most of the majority of the other solutions are you publish it first it’s live and then you can go back and check it and then you kind of have to retrofit it. I’ve been working in enterprises enough to know that that doesn’t happen once it’s published, Once it’s out there, people are generally going to move on. They’re not going to do the analysis of like, All right, how do I go back and improve this thing? So you really got to you really got to catch those things early and often. Um, you know, up front in the, in the content publishing lifecycle. So that was one of the big differentiators was that and that again, that’s all a product of the WordPress ecosystem and the innovation that comes out of that ecosystem. The other one was just kind of like the resources around this. So we all, you know, you can take for a grain of salt like, you know, the the whole thing about, you know, WordPress powers, 40% of the web, you know, that kind of stuff.</p>\n\n\n\n<p>J.J. Toothman (00:34:57) – But there is some byproduct of that. And that is there’s a lot of people using it. There’s a lot of people building it. There’s a lot of people developing on it. There’s a lot of people extending on. There’s a lot of knowledge being shared around that. One of the things I did was I went in the stack overflow and compared WordPress with other CMS’s and just being like, How many conversations are happening around this thing, you know, that we’re looking at? And it was, you know, what you expected, the ability for, you know, to be able to. Try to solve a problem by getting by by, you know, interfacing or sponging up knowledge that was already contributed back in some way, you know, via via StackOverflow or, you know, other places on the Web, other groups, Slack channels, etcetera, that exists in WordPress in a way that it doesn’t exist in these other, you know, CMS products. You know, the if you want to if you want to get developer knowledge around Adobe Experience Manager, you for for the most part there are some Adobe experience manager specialists out there, but for the most part you got to go to Adobe for it.</p>\n\n\n\n<p>J.J. Toothman (00:36:02) – Um. Uh, you know, same thing with sorts. There’s not there’s not a huge community of sort site developers out there. So for a place like NASA, you know, resource acquisition becomes a problem. Like, where are they going to find talent for that? Yeah. And you know, again, WordPress, you know, kind of is head and shoulders above the rest in that area. Um, and then, you know, this whole concept of WordPress is for everyone to like that. That rang true in all this research too. Like it’s more than just developer community. There’s user communities out there that are also sharing their knowledge here. Um, you know, there’s all these kinds of like, there’s, there’s solutions for learning WordPress that are provided by the communities and multiple companies with the community that add a lot of value within the equals. So it’s not just like the software ecosystem, but it’s like, you know, the kind of service ecosystem to that exist within WordPress. Um, and then honestly, like, you know, portability matters to, um, you know, there’s, for the most part, like I really just wanted public sector to adopt open source.</p>\n\n\n\n<p>J.J. Toothman (00:37:11) – You know, that’s the first decision I want, I want them to do is just, just, you know, make an open source decision. And then you’ve done that. You know, you’re in a good you’re in a better place than picking a commercial, you know, bespoke solution. You know, And then, you know, once you get past that hurdle now, you know, the obvious open source can cannot exist. And you know, the user experience of WordPress and that whole concept of WordPress being for everyone and being considering everyone, depending on who you are, really rings true and is a differentiator as well.</p>\n\n\n\n<p>Cory Miller (00:37:50) – Well, that’s excellent. And that rings true. You know, I’m curious because as I talked to more enterprise agencies, all of you out there in the world interfacing with clients, with their needs, what they actually are trying to get done. That’s really, really great to hear and it’s reflective of the community. I think sometimes they’ve been in the community like you as long as we have.</p>\n\n\n\n<p>Cory Miller (00:38:10) – I take some of those things for granted. So I think that’s that’s excellent. Well, JJ, thanks so much for the time today. I know you just got back from a big trip and you’ve got work to pile out, but I appreciate you coming on the podcast and sharing your agency journey, and I look forward to our next conversation, sharing the good work you’re doing with WordPress in our world. That too.</p>\n\n\n\n<p>J.J. Toothman (00:38:31) – Corey Thanks for having me.</p>\n\n\n\n<p>Cory Miller (00:38:34) – All right. Thanks, everybody, for being here today. And we’ll talk to you. We’ll see. We’ll talk to you. We’ll hear from you. They’ll listen to us soon.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 19 Aug 2023 03:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";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:68:\"Post Status: WordPress 6.3 RC1 • Field Guide • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://poststatus.com/wordpress-6-3-rc1-field-guide-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://poststatus.com/wordpress-6-3-rc1-field-guide-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25778:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 17, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.3 will arrive on August 8, so there isn’t much time left for testing compatibility. Whether you are a plugin or theme maintainer or managing clients’ websites, now is the time to test the latest features. Mike Schroder shares their most anticipated feature with auto-rollbacks coming.Collaborative editing is coming to WordPress, but what might… </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Field Guide, Phase 3</h2><p class=\"kt-blocks-info-box-text\"><br /> <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a><br /><br /> <a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\">Sneak a Peek at WP</a><a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\"> 6.3 with Mike Schroder</a><br /><br /> ‍ <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a><br /><br />3⃣ <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br /> <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a><br />><br /></a><br /><br />><br /></a><br /><br /></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\">WP Briefing: Episode 60: Sneak a Peek at WordPress 6.3 with Special Guest Mike Schroder</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/designed-with-wordpress/\">Designed with WordPress</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-40 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-45 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-43 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/07/17/accessibility-team-meeting-agenda-july-21-2023/\">Accessibility Team Meeting Agenda: July 21, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-july-12-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/a-week-in-core-july-17-2023/\">A Week in Core – July 17, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Beyond block styles, part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\">Make your site’s typography make a statement</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/whats-new-for-developers-july-2023/\">What’s new for developers? (July 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/how-to-modify-theme-json-data-using-server-side-filters/\">How to modify theme.json data using server-side filters</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/editor-chat-agenda-july-19th-2023/\">Editor Chat Agenda: July 19th, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/dev-chat-agenda-july-19-2023/\">Dev Chat agenda, July 19, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/07/03/design-share-jun-19-jun-30/\">Design Share: Jun 19–Jun 30</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/agenda-for-docs-team-bi-weekly-meeting-july-18-2023/\">Agenda for Docs Team bi-weekly meeting July 18, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/17/documentation-team-update-july-17-2023/\">Documentation Team Update – July 17, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/11/hosting-team-meeting-agenda-2023-07-12/\">Hosting Team meeting agenda 2023-07-12</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/06/26/notes-global-marketing-team-meeting-20-june-2023/\">Notes: Global Marketing Team meeting, 20 June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/06/19/notes-global-marketing-team-meeting-13-june-2023/\">Notes: Global Marketing Team meeting, 13 June 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/13/new-filter-controls-discover-commercial-and-community-in-the-theme-and-plugin-directory/\">New Filter Controls: Discover “Commercial” and “Community” in the Theme and Plugin Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">New curation filter in Pattern Directory</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/mobile-team-update-july-12th/\">Mobile Team Update – July 12th</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/mobile-team-update-july-12th/\">Mobile Team Update – July 12th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/18/community-meeting-recap-2023-07-18/\">Community Meeting Recap (2023-07-18)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/17/last-week-openverse-2023-07-10-2023-07-17/\">A week in Openverse: 2023-07-10 – 2023-07-17</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/performance-chat-summary-18-july-2023/\">Performance Chat Summary: 11 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/17/plugin-review-team-17-jul-2023/\">Plugin Review Team: 17 Jul 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/19/weekly-polyglots-chat-july-19-2023-1300-utc/\">Weekly Polyglots Chat – July 19, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/06/wp-contributor-mentorship-program-support-team-edition/\">WP Contributor Mentorship Program: Support team edition</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/14/sustainability-chat-summary-july-14-2023/\">Sustainability Chat Summary, July 14, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/themes-team-update-july-12-2023/\">Themes team update July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/07/13/themes-team-meeting-notes-july-11-2023/\">Themes Team Meeting Notes – July 11, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/learn-wordpress-july-2023-newsletter/\">Learn WordPress July 2023 Newsletter</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/10/training-team-2023-half-year-review/\">Training Team 2023 Half Year Review</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/08/next-steps-for-github-updates/\">Next steps for GitHub updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/08/announcement-updates-to-team-meeting-times/\">Announcement: Updates to team meeting times</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/07/project-thread-learning-pathways-on-learn-wordpress/\">Project Thread: Learning Pathways on Learn WordPress</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/it-choosing-and-installing-a-theme/\">Scegliere e installare un tema</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/7-tips-to-improve-website-security/\">7 Tips to improve website security</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3\">Testing WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=come-join-the-wordpress-training-team-4\">Come join the WordPress Training Team!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-3\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-2\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=mentorship-program-introduction-to-the-wordpress-open-source-project\">Mentorship Program: Introduction to the WordPress Open Source Project</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-dhaka-2023-has-been-cancelled/\">WordCamp Dhaka 2023 Has Been Cancelled</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-rochester-is-back/\">WordCamp Rochester is Back!</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-san-jose-2023-looking-for-speakers-and-sponsors/\">WordCamp San José 2023: Looking For Speakers And Sponsors!</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/06/wordcamp-finland-back-to-tampere-with-educational-insightful-and-thought-provoking-talks/\">WordCamp Finland: back to Tampere with educational, insightful and thought-provoking talks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 19 Aug 2023 03:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";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:96:\"Post Status: WordPress 6.3 Beta 4 • Help Test • DEIB New Team Proposal • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://poststatus.com/wordpress-6-3-beta-4-help-test-deib-new-team-proposal/\";s:7:\"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:77:\"https://poststatus.com/wordpress-6-3-beta-4-help-test-deib-new-team-proposal/\";s: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:22073:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 11, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.3 is less than one month away. Get started testing now and tune in for the live product demo. As we head into WordPress 6.4’s kickoff, it’s time to set our sights on Gutenberg Phase 3: Collaborative Editing. Your feedback to the ideas presented is important. The first cohort of New Contributor Mentorship Program… </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, DEIB, Mentorship, Phase 3</h2><p class=\"kt-blocks-info-box-text\">β <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-4/\">WordPress 6.3 Beta 4</a><br /><br /> <a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">6.3 Live Product Demo</a><br /><br /> ‍ <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a><br /><br />3⃣ <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br /> ‍ <a href=\"https://make.wordpress.org/updates/2023/07/12/xpost-announcing-the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program/\">Contributor Mentorship Program!</a><br />><br /></a><br /><br />><br /></a><br /><br /></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-4/\">WordPress 6.3 Beta 4</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">6.3 Live Product Demo</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/people-of-wordpress-allison-dye/\">People of WordPress: Allison Dye</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/episode-59-a-polyglots-wordpress/\">WP Briefing: Episode 59: A Polyglot’s WordPress</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-50 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-48 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/07/07/accessibility-team-meeting-agenda-july-7-2023/\">Accessibility Team Meeting Agenda: July 7, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/xpost-announcing-the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program/\">Contributor Mentorship Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/announcing-the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program/\">Announcing the Inaugural Cohort of the WordPress Contributor Mentorship Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/05/community-team-meeting-agenda-for-6-july-2023/\">Community Team Meeting Agenda for 6 July, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/05/wcus-2023-contributor-day-help-needed/\">WCUS 2023 Contributor Day: Help Needed!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/05/wcus-2023-contributor-day-what-should-we-work-on/\">WCUS 2023 Contributor Day: What should we work on?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/03/incident-report-recent-cancelation-of-a-wordcamp/\">Incident Report: Recent Cancelation of a WordCamp</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/03/wordcamp-mentors-july-check-in/\">WordCamp Mentors’ July check-in!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/a-week-in-core-july-10-2023/\">A Week in Core – July 10, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/06/the-style-book-a-one-stop-shop-for-styling-block-themes/\">The Style Book: a one-stop shop for styling block themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/06/navigating-the-block-editor-handbook/\">Navigating the Block Editor Handbook</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/06/upgrading-the-site-editing-experience-with-custom-template-part-areas/\">Upgrading the site-editing experience with custom template part areas</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/12/dev-chat-summary-july-12-2023-2/\">Dev Chat Summary: July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/12/developer-blog-editorial-meeting-06-june-2023/\">Developer Blog Editorial Meeting – 06 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/07/03/design-share-jun-19-jun-30/\">Design Share: Jun 19–Jun 30</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/12/xpost-announcing-the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program/\">Contributor Mentorship Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/06/summary-for-docs-team-meeting-jul-04-2023/\">Summary for Docs Team Meeting, Jul 04, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/11/hosting-team-meeting-agenda-2023-07-12/\">Hosting Team meeting agenda 2023-07-12</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/13/new-filter-controls-discover-commercial-and-community-in-the-theme-and-plugin-directory/\">New Filter Controls: Discover “Commercial” and “Community” in the Theme and Plugin Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">New curation filter in Pattern Directory</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/mobile-team-update-july-12th/\">Mobile Team Update – July 12th</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/12/community-meeting-recap-2023-07-11/\">Community Meeting Recap (2023-07-11)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/10/last-week-openverse-2023-07-03-2023-07-10/\">A week in Openverse: 2023-07-03 – 2023-07-10</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/05/priorities-meeting-recap-2023-07-05/\">Priorities Meeting Recap 2023-07-05</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/05/community-meeting-recap-2023-07-04/\">Community Meeting Recap (2023-07-04)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/performance-chat-summary-11-july-2023/\">Performance Chat Summary: 11 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/12/agenda-weekly-polyglots-chat-july-12-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – July 12, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/06/28/agenda-weekly-polyglots-chat-june-28-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – June 28, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/06/wp-contributor-mentorship-program-support-team-edition/\">WP Contributor Mentorship Program: Support team edition</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/06/30/sustainability-chat-summary-june-30-2023/\">Sustainability Chat Summary, June 30, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/10/test-team-update-10-july-2023/\">Test Team Update: 10 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/themes-team-update-july-12-2023/\">Themes team update July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/07/13/themes-team-meeting-notes-july-11-2023/\">Themes Team Meeting Notes – July 11, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/learn-wordpress-july-2023-newsletter/\">Learn WordPress July 2023 Newsletter</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/10/training-team-2023-half-year-review/\">Training Team 2023 Half Year Review</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/08/next-steps-for-github-updates/\">Next steps for GitHub updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/08/announcement-updates-to-team-meeting-times/\">Announcement: Updates to team meeting times</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/07/project-thread-learning-pathways-on-learn-wordpress/\">Project Thread: Learning Pathways on Learn WordPress</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/06/training-team-meeting-recap-4th-july-2023/\">Training Team Meeting Recap – 4th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/04/expertise-needed-learn-how-to-vet-content-topic-ideas-for-the-training-team/\">Expertise needed: Learn how to vet content topic ideas for the Training Team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/03/training-team-meeting-recap-for-june-27th-2023/\">Training Team Meeting Recap for June 27th, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/7-tips-to-improve-website-security/\">7 Tips to improve website security</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/categories-vs-tags-whats-the-difference/\">Categories vs. Tags: What’s the difference?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/debugging-in-wordpress/\">Debugging in WordPress</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/designing-with-row-and-stack-blocks/\">Designing with row and stack blocks</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3\">Testing WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=come-join-the-wordpress-training-team-4\">Come join the WordPress Training Team!</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-dhaka-2023-has-been-cancelled/\">WordCamp Dhaka 2023 Has Been Cancelled</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-rochester-is-back/\">WordCamp Rochester is Back!</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-san-jose-2023-looking-for-speakers-and-sponsors/\">WordCamp San José 2023: Looking For Speakers And Sponsors!</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/06/wordcamp-finland-back-to-tampere-with-educational-insightful-and-thought-provoking-talks/\">WordCamp Finland: back to Tampere with educational, insightful and thought-provoking talks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 19 Aug 2023 03:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";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:105:\"Post Status: WordPress 6.3 Beta 2 • Help Test • WPDiversity • Plugin Team Next Phase • Mentorship\";s:7:\"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:100:\"https://poststatus.com/wordpress-6-3-beta-2-help-test-wpdiversity-plugin-team-next-phase-mentorship/\";s:7:\"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:100:\"https://poststatus.com/wordpress-6-3-beta-2-help-test-wpdiversity-plugin-team-next-phase-mentorship/\";s: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:21026:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (June 26, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Release season is upon us as we approach WordPress 6.3’s August 8th release. Your help is needed testing the latest changes. Do you run or attend WordPress events and notice only one type of person is attending? What can you do to be a good ally to foster, promote, and support diversity and an inclusive… </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP6.3b2 • Test • WPDiversity • Mentorship • Plugin Team Next Steps</h2><p class=\"kt-blocks-info-box-text\">β <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a><br /><br /> ‍ <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a><br /><br /> <a href=\"https://make.wordpress.org/community/2023/06/22/attention-wordpress-event-organizers-this-important-workshop-on-july-20-2023-is-for-you/\">Attention WordPress event organizers: This important workshop on July 20, 2023 is for you!</a><br /><br /> <a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a><br /><br /> ‍ <a href=\"https://make.wordpress.org/project/2023/06/23/launch-your-wordpress-contributor-journey-through-the-mentorship-program-pilot/\">Launch your WordPress Contributor Journey through the Mentorship Program Pilot</a><br /><br /></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/06/people-of-wordpress-allison-dye/\">People of WordPress: Allison Dye</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/episode-58-a-new-wave-for-wordpress-events/\">WP Briefing: Episode 58: A New Wave for WordPress Events</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-55 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-53 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/06/16/accessibility-team-meeting-notes-june-16-2023/\">Accessibility Team Meeting Notes: June 16, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/06/29/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-june-28-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on June 28, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/22/attention-wordpress-event-organizers-this-important-workshop-on-july-20-2023-is-for-you/\">Attention WordPress event organizers: This important workshop on July 20, 2023 is for you!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/21/meetup-organizer-newsletter-june-2023/\">Meetup Organizer Newsletter: June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/21/wceu-2023-community-table-recap/\">WCEU 2023 Community Table Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/19/next-generation-of-wordpress-events-updates/\">Next Generation of WordPress Events: Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/\">What’s new in Gutenberg 16.1? (29 June)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/27/a-week-in-core-june-26-2023/\">A Week in Core – June 26, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/06/the-style-book-a-one-stop-shop-for-styling-block-themes/\">The Style Book: a one-stop shop for styling block themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/06/navigating-the-block-editor-handbook/\">Navigating the Block Editor Handbook</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/06/upgrading-the-site-editing-experience-with-custom-template-part-areas/\">Upgrading the site-editing experience with custom template part areas</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/27/dev-chat-summary-june-21-2023/\">Dev Chat Summary: June 21, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/26/editor-chat-agenda-june-28th-2023/\">Editor Chat Agenda: June 28th, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/06/06/design-share-may-22-jun-2/\">Design Share: May 22–Jun 2</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/06/23/online-monthly-docs-team-contributor-day-june-27-2023/\">Online monthly Docs Team Contributor Day June 27, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/06/23/summary-for-docs-team-meeting-june-20-2023/\">Summary for Docs Team meeting, June 20, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/06/28/hosting-team-meeting-agenda-2023-06-28/\">Hosting Team meeting agenda 2023-06-28</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/13/new-filter-controls-discover-commercial-and-community-in-the-theme-and-plugin-directory/\">New Filter Controls: Discover “Commercial” and “Community” in the Theme and Plugin Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">New curation filter in Pattern Directory</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/06/30/catalog-performance-testing-results/\">Catalog Performance Testing Results</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/06/27/community-meeting-recap-2023-06-27/\">Community Meeting Recap (2023-06-27)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/06/26/last-week-openverse-2023-06-19-2023-06-26/\">A week in Openverse: 2023-06-19 – 2023-06-26</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/27/performance-chat-summary-27-june-2023/\">Performance Chat Summary: 27 June 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/06/28/agenda-weekly-polyglots-chat-june-28-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – June 28, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/06/23/launch-your-wordpress-contributor-journey-through-the-mentorship-program-pilot/\">Launch your WordPress Contributor Journey through the Mentorship Program Pilot</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/06/wp-contributor-mentorship-program-support-team-edition/\">WP Contributor Mentorship Program: Support team edition</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/06/30/sustainability-chat-summary-june-30-2023/\">Sustainability Chat Summary, June 30, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/07/fse-program-testing-call-24-momery-makeover/\">FSE Program Testing Call #24: Momery Makeover</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/06/28/themes-team-meeting-notes-june-27-2023/\">Themes Team Meeting Notes – June 27, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/06/24/proposal-lets-actively-promote-the-learn-wordpress-platform-in-learn-wordpress-content/\">Proposal: Let’s actively promote the Learn WordPress platform in Learn WordPress content</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/22/training-team-meeting-recap-20th-june-2023/\">Training Team Meeting Recap – 20th June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/20/proposal-new-contributor-guide-program/\">Proposal: New Contributor Guide Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/19/brainstorm-table-lead-wordcamp-us-2023-contributor-day/\">Brainstorm & Table Lead – WordCamp US 2023 Contributor Day</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/developing-for-multisite/\">Developing for Multisite</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-start-using-wordpress-playground/\">How to start using WordPress Playground</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wpphotos-moderator-training/\">WPPhotos Moderator Training</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/using-the-block-editor-tips-and-shortcuts-for-efficiency/\">Using the block editor: Tips and shortcuts for efficiency</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/using-headings-for-accessibility-and-seo/\">How to use headings for accessibility and SEO</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/advanced-multisite-management/\">Advanced Multisite Management</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/fr-the-difference-between-reusable-blocks-block-patterns-templates-and-template-parts/\">Différences entre blocs réutilisables, compositions de blocs, modèles et éléments de modèle</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-dashboard-widgets\">Common WordPress APIs: Dashboard Widgets</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-8\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=introducing-domains-4\">Introducing… Domains!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=introducing-domains-3\">Introducing… Domains!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=tips-and-shortcuts-for-using-the-block-editor-streamlining-content-creation-apac\">Tips and shortcuts for using the block editor & streamlining content creation (APAC)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=tips-and-shortcuts-for-using-the-block-editor-streamlining-content-creation\">Tips and shortcuts for using the block editor & streamlining content creation</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=using-the-row-and-stack-blocks-apac\">Using the row and stack blocks (APAC)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-7\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=custom-tables-in-wordpress\">Custom tables in WordPress</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=developer-hours-exploring-editor-extensibility\">Developer Hours: Exploring Editor Extensibility</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-lets-chat-about-wordpress-6-3-and-block-theming\">Hallway Hangout: Let’s chat about WordPress 6.3 and block theming</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=the-wordpress-developer-quiz\">The WordPress developer Quiz</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-can-chat-gpt-help-wordpress-developers-and-designers\">How can Chat GPT help WordPress developers and designers?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-set-up-a-free-wordpress-test-website-and-explore-code-2\">How to set up a free WordPress test website (and explore code!)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/creating-a-4-page-business-website/\">Creating a 4-page business website</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-04-13-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\">PHP 8.2.6 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-2\">PHP 8.1.19 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 19 Aug 2023 03:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";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:80:\"Post Status: The WP Agency Journey with Rob Cairns of Stunning Digital Marketing\";s:7:\"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:91:\"https://poststatus.com/the-wp-agency-journey-with-rob-cairns-of-stunning-digital-marketing/\";s:7:\"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:91:\"https://poststatus.com/the-wp-agency-journey-with-rob-cairns-of-stunning-digital-marketing/\";s: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:46702:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a>, CEO of <a href=\"https://poststatus.com/\">Post Status</a>, and <a href=\"https://twitter.com/RobCairns\">Rob Cairns</a>, Founder, CEO, and Chief Creator of Amazing Ideas at <a href=\"https://stunningdigitalmarketing.com/\">Stunning Digital Marketing</a>, discuss the importance of website security, client communication, and managing client expectations. They also talk about the need for businesses to treat their websites as valuable assets and allocate budgets for their maintenance and security. Websites have become an integral part of modern business operations, especially with the impact of the COVID-19 pandemic.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Top Takeaways:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li><strong>Website Security and Budgeting</strong>: Businesses must prioritize website security and allocate appropriate budgets for maintenance and protection. Websites are now integral to modern business operations, and their value should be recognized and treated as essential as physical security measures.</li>\n\n\n\n<li><strong>Effective Client Communication</strong>: Clear and proactive communication with clients is crucial. Agencies should manage client expectations, set boundaries, and communicate any limitations, such as response times during vacations or other periods of unavailability. Managing client communication helps build trust and ensures a smoother working relationship.</li>\n\n\n\n<li><strong>Community Engagement and Personal Well-being</strong>: Engaging with the WordPress community and participating in events like WordCamps can be valuable for networking, knowledge sharing, and staying updated with industry trends. Additionally, individuals need to prioritize their own well-being and take care of their health.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/a2-hosting\">A2 Hosting</a></h3>\n\n\n\n<div class=\"wp-block-columns has-theme-palette-8-background-color has-background is-layout-flex wp-container-58 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n\n\n<p>A2Hosting offers solutions for WordPress and WooCommerce that are both blazing fast and ultra-reliable. WordPress can be easily deployed on ANY web hosting plan from A2: Shared, VPS, or Dedicated. A2 also offers Managed WordPress and WooCommerce Hosting. Take a look at a2hosting.com today!</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<img width=\"752\" height=\"470\" src=\"https://poststatus.com/wp-content/uploads/2022/08/imageedit_1_6433774706-752x470.png\" alt=\"A2 Hosting\" class=\"wp-image-104073\" />A2 Hosting\n</div>\n</div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\"> Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://www.lastpass.com/\">LastPass</a></li>\n\n\n\n<li><a href=\"https://twitter.com/kathyzant?lang=en\">Kathy</a> </li>\n\n\n\n<li><a href=\"https://poststatus.com/\">Post Status</a></li>\n\n\n\n<li><a href=\"https://buffalo.wordcamp.org/2023/\">WordCamp Buffalo</a></li>\n\n\n\n<li><a href=\"https://montclair.wordcamp.org/2023/\">WordPress Montclair</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/\">LinkedIn</a></li>\n\n\n\n<li><a href=\"https://twitter.com/courtneyr_dev\">Courtney Robertson</a></li>\n\n\n\n<li><a href=\"https://wordpress.com/\">WordPress</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/RobCairns\">Rob Cairns</a> (Founder, CEO, & Chief Creator of Amazing Ideas, <a href=\"https://stunningdigitalmarketing.com/\">Stunning Digital Marketing</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:00) – All right. Hey, everybody. Welcome back to Post Edits Draft. We’ve got another interview in our series on agency journeys. And I’m talking to a long time friend of mine, Rob Carnes, who has been very active in post. It’s been to a bunch of our meetups and I’m really excited to share his story today. So Rob, thanks for being on The Post podcast.</p>\n\n\n\n<p>Rob Cairns (00:00:21) – My pleasure, Corey. Glad to be here.</p>\n\n\n\n<p>Cory Miller (00:00:24) – Well, Rob, let’s dive in. Tell us a little bit about yourself and your agency today. Name and what you do. What kind of work primarily you do for your clients.</p>\n\n\n\n<p>Rob Cairns (00:00:34) – Okay, So my name is Rob Cairns. I’m in the greater Toronto area of Toronto, Ontario, Canada. I should tell you, before I got into running an agency, I have a very tech heavy background which a lot of agency owners don’t have. So I come out of an enterprise healthcare environment, doing servers, doing all kinds of cool stuff to support one of Toronto’s biggest hospitals.</p>\n\n\n\n<p>Rob Cairns (00:00:58) – Before that I was actually an old time COBOL programmer. There’s probably a word that you haven’t heard in a long, long time, and I spent some time in the financial industry, so I’ve got a bit of a business background. And then I jumped into agency life because, you know, I always tell the story. I never planned to be in marketing because I had a marketing professor in school back in the 80s who came in the class, and her whole thing was, Oh, I’m good. I’m here because I want my summers off. And I said, I swore then in there I’d never be a marketer if you paid me money to. Well, I lied. So, yeah. And I run I run an agency that’s WordPress focused. A lot of it is WordPress security stuff right now and some builds and then a lot of email marketing and consulting these days. That’s kind of where I’m at.</p>\n\n\n\n<p>Cory Miller (00:01:50) – Yeah. And what’s your agency name?</p>\n\n\n\n<p>Rob Cairns (00:01:53) – Stunning digital marketing.</p>\n\n\n\n<p>Cory Miller (00:01:55) – And what’s the website for your.</p>\n\n\n\n<p>Rob Cairns (00:01:58) – Digital marketing is the agency site and digital marketing.info is like my Linktree site. It’s got links to everything I do on the web and where you can find me.</p>\n\n\n\n<p>Cory Miller (00:02:09) – Excellent. Excellent. Well, I know as I’ve gotten to know you through some of the meetups, too, I hear more and more about the work you do, and it always impresses me. You’re like, Hey, is anybody worried about this particular update? And and I know you managed quite a few sites and it always I always like lean in when you talk about that because it’s at the heart of what a lot of agency work, particularly at post is that our agencies do is that beast of maintaining WordPress across multiple WordPress client sites. Well, great. Thank you for that. So tell me a little bit about how you got there. I heard a little preface of that, but I wanted to start out with where you are today. Um, and then talk about how you got there. That’s always the compelling part of these Journey series to me is what happened before.</p>\n\n\n\n<p>Cory Miller (00:02:59) – So this is today and then what? What’s a little snippet of how what led up to where you are today?</p>\n\n\n\n<p>Rob Cairns (00:03:06) – So where I am today was kind of how I got there was us working in healthcare. I wasn’t happy, I’ll tell you that now. I was working probably 60 to 70 hours a week at the time. So this is going back 14 years ago was when we started and I was extremely unhappy and somebody said to me, So why don’t you just go? And I said, Well, I’ve been here 21 years, so if they want to get rid of me, it’s going to cost some lots of money to get rid of me. So let’s force the hand and see where it goes. Well, 14 years ago, my dad was sick with pancreatic cancer at the time he actually passed away July 8th, the anniversary that’s coming up. And they decided, knowing I was going to be taking some time off, they decided we need to we’re going to make some changes and you can go away.</p>\n\n\n\n<p>Rob Cairns (00:03:56) – And at that point, I was already building WordPress websites on the side. So I just kind of transitioned to what I was doing on the side full time. Now here’s where it got interesting. I decided really quickly only building the website, it’s only part of getting it out there. You still got a market that site and you got to do it properly. So I made a decision then and there. I was going to build a full stack marketing agency. I’ve taken some courses, a lot of courses. One of my mentors in this space is a gentleman by the name of Paul Tobey, who I’m founder of. Paul. Toby’s actually the father of Adrian Toby, the founder of Groundhog, who you know. So that’s.</p>\n\n\n\n<p>Cory Miller (00:04:40) – Love.</p>\n\n\n\n<p>Rob Cairns (00:04:40) – Adrian Yeah, love Adrian, Love. His dad saw his dad in January, actually, and we sat in his house and listened to him play some jazz tunes for us where we were visiting and and then transitioned in and at one time was offering all kinds of services and then just realized some of these are just don’t want to do so I just kind of niche down and got out of what I didn’t want to do so.</p>\n\n\n\n<p>Cory Miller (00:05:10) – Got you. So how long ago did you go? Full time with the business?</p>\n\n\n\n<p>Rob Cairns (00:05:16) – 14 years ago.</p>\n\n\n\n<p>Cory Miller (00:05:18) – 14 years ago. Okay. That’s awesome. We were going strong about the same time.</p>\n\n\n\n<p>Rob Cairns (00:05:22) – Yeah, about same time. And you. And you and I connected, I think the first time about 14 years ago when I was in the headway community. And you were running the items community. And you’d be proud to know two of the products in my security stack back up by the in 19 security are still there to this day so.</p>\n\n\n\n<p>Cory Miller (00:05:40) – Oh that’s fantastic to hear. Well, okay, So I’m really curious. Was there a point when you were like, doing this on the side? What was that juncture when you’re like, okay, I’m going to do this full time? A lot of the stories we hear, I hear in It’s My Own is some event. Something helped kind of catalyze the process to become a full time entrepreneur. And so I’m curious. So not happy, of course. And then, hey, I think you might have mentioned this just a second ago, but I want to make sure I’m clear on it.</p>\n\n\n\n<p>Cory Miller (00:06:13) – So was there event that kind of like, okay, I’m doing this full time, this is the only thing I’m doing.</p>\n\n\n\n<p>Rob Cairns (00:06:18) – So my as I say, my dad was battling pancreatic cancer at the time. Oh, right. Yeah. I went on three weeks vacation after I was on the corporate project, number one, and amassing overtime like nothing. And I walked back in on a Monday morning. I got a call from the director’s secretary at 10 a.m. and say, Director won’t see you in a boardroom at 3:00. And the boardroom was not the normal boardroom for meetings. So I just kind of put my feet up and said, okay, I know how this day’s going to play out. Welcome back from vacation for me. And believe it or not, I actually shipped everything personal home from work at lunchtime in a cab because I saw the writing on the wall. I’d seen it on the wall for a while. Yeah. Then I get, um, I get called in and the director says, Do you know why you’re here? I said, So you’re going to let me go, so let’s just get it over with.</p>\n\n\n\n<p>Rob Cairns (00:07:16) – And the h.r. Manager turned to me and said, how do you how do you feel about all this? And my response at the time was, my lawyer will tell you at 9:00 tomorrow morning. Now you’re like no other comment.</p>\n\n\n\n<p>Cory Miller (00:07:27) – Now at this time, you were already doing things on the side, though, right? Yeah, I think that’s important to note in the story because, you know, some of these events that happen, but you were already kind of testing the waters, building some kind of side hustle side gig on the side. So you didn’t just, you know, jump out into the ether. You had something kind of built up. Were you doing work for like client? I mean, friends? How did the the side gig kind of start parallel to that side gig?</p>\n\n\n\n<p>Rob Cairns (00:07:59) – Actually, it’s really interesting you ask that question. Being in tech, I’m like a resource in my family and you can appreciate that. So I did go to the let’s send an email to let’s ask the question.</p>\n\n\n\n<p>Rob Cairns (00:08:13) – And I actually got fed up with family, believe it or not, and I wrote a website at that time was HTML and said, by the way, here’s all the family pictures from the event last week because I was also the manager of all that digital stuff. And by the way, here’s links to all the questions you guys asked me and nobody’s allowed to ask me a question until you go to these links and and actually do your own homework. So that was my start into domains and all of that and web stuff. And the other thing that started it was this is going back to the days of dial and dialing Internet providers, if we remember those days. Yep. And trauma, they were a dime a dozen. So I used to switch providers, i.e. email services more than most people because I get fed up with one dial in provider and I cancel. I go to another one, I cancel, I go to another one, I cancel. So I finally said, Forget this, I’m going to register a domain which I still have to this day.</p>\n\n\n\n<p>Rob Cairns (00:09:15) – And then that was kind of my foray in. And then after doing static sites, I realized WordPress was the way to go and that’s what kind of opened the door.</p>\n\n\n\n<p>Cory Miller (00:09:24) – So what was your introduction to WordPress? What kind of time period did you start using?</p>\n\n\n\n<p>Rob Cairns (00:09:28) – WordPress would have been about 16, 15 years ago. 16 years ago?</p>\n\n\n\n<p>Cory Miller (00:09:32) – Yeah, right. Right. In its first early heyday for sure. That’s about the same time I got started with WordPress, this cool platform that you didn’t have to manage with all these HTML top software and updated 100 pages you could do with one click. Essentially this concept of content management system was really, really crazy and awesome.</p>\n\n\n\n<p>Rob Cairns (00:09:53) – We all remember the famous five minute WordPress install where our our hosting providers didn’t have a one click installer like stop flashes or any of them. We had to do it ourselves, right?</p>\n\n\n\n<p>Cory Miller (00:10:05) – And yeah, we did it. I mean, I’m trying to remember when I did that, if it was FTP, you know, putting it on the server.</p>\n\n\n\n<p>Cory Miller (00:10:14) – Yeah, I’m trying to think back about that. I use soft tactless quite a bit in the early days, but that was magical back then. If you think about it, it’s like I want the ability to do build a website and I don’t have to learn too many technical logistics. I remember googling. What does FTP mean? That was one of our first post that I themes because I was like, if I have this question, I bet you a bunch of other people have this question. But yeah, WordPress made it easy.</p>\n\n\n\n<p>Rob Cairns (00:10:40) – Yeah. I have to tell you a funny story. You appreciate being over it. I think so. I had a client years ago. It was Australian, one of my first big clients, and he didn’t see the spending the money on something like backup buddy. So the silly client came back to me and said, So write me the documentation process of tobacco and restore a website menu and document it out. And the story goes that the cost to him paying for that documentation at the time would have cost him more than a yearly license for backup money.</p>\n\n\n\n<p>Rob Cairns (00:11:12) – Well, even or not. So needless to say, he became a backup buddy. Pretty convert pretty quickly. Corey.</p>\n\n\n\n<p>Cory Miller (00:11:20) – So. Well, okay, so you go full time with the agency starting to do on work. I know somewhere in there was like, Hey, there’s more to just the actual website build. There’s marketing different parts around the website. Um, as you look back, you know, 15 years now, what were some of the catalytic events that help you in your agency, personal professional, WordPress, all these things. If you look back where like 3 or 4 of the things that really made the difference in your agency to where you’re now, I know you’ve been doing this a long time. I know you’ve been able to have freedom of life to do different things in your life as part of the business part of WordPress, which is always the magic, I think, WordPress. But if you look back, what are those couple of things that kind of stand out?</p>\n\n\n\n<p>Rob Cairns (00:12:06) – Um, a couple of things.</p>\n\n\n\n<p>Rob Cairns (00:12:07) – One is I come from a family of entrepreneurs, so my mother is 78 years old, still alive and still selling houses, believe it or not. As a real estate agent, my aunt who passed away at 92, was one of the top real estate brokers for Century 21 in the Farmington, Detroit area for many, many years. First successful. I come from a family who’s done business on their own, so that helps. My father was a CFO for an insurance broker, so that helps. That helped install some money sense into me and some business sense into me. I’m also a lifelong learner. So you and I have talked over the years about how much reading I do or how much listening to other podcasts. I do believe it or not, my own podcast is not on my podcast player backdrop. I’m busy listening to everybody else’s because think you got to get a variety of point. And then kind of just people along the way. People like yourself. People like Paul. Toby Paul was a big catalyst for giving me credit and saying, you know, more than like 75% of the world.</p>\n\n\n\n<p>Rob Cairns (00:13:21) – Just go after it. So Paul was really good for me around mindset more than just technical stuff, so that was good. And then things like in my life recognizing and you and I have had this conversation about mental health challenges and the whole pearls around that. You’ve been through it. I’ve been through it. We’ve talked about it very candidly together over the years. That has helped. Am probably. 200% more mental health. Healthy today in my 50s and was in my 30s. I would say that, you know.</p>\n\n\n\n<p>Cory Miller (00:13:58) – I think I want to say ditto. I think I think so.</p>\n\n\n\n<p>Rob Cairns (00:14:02) – And then surrounding yourself with the right people and people like yourself, people like post others group people like, you know, people outside of the post group, people you can go to and say, Hey, I just need an ear or, Hey, I’m stuck on something technical. I should know doing that. And then kind of. A big part of all this was deciding a number of years ago that I’m such a security junkie and I always was, even when I was in health care, and I need to dive into the security space and put my time and money there.</p>\n\n\n\n<p>Rob Cairns (00:14:38) – And that was a big part of it, too. And that’s how that came to birth. You mentioned, I imagine, websites as of yesterday’s count 418, believe it or not, just from an update in security perspective and growing by the day. So.</p>\n\n\n\n<p>Cory Miller (00:14:53) – It’s it’s for sure become a thing in a good part of our industry and community that there’s agencies like yours and I’ve talked to a lot that that are recognized WordPress is awesome. There’s a lot of things that go into it as far as keeping those things updated. So somebody goes, Oh, I built it, you know, I built the baseball field, Field of Dreams. It’s there. Cool. Everybody’s going to come to it. There’s two sides of the coin that’s really interesting with your story. One is that updates security. Part of it got to keep the field maintained. The other side is the marketing part. I found this fascinating because you’ve got this to blend of marketing and the really the maintenance said that includes this big topic called security.</p>\n\n\n\n<p>Rob Cairns (00:15:37) – Yep, it’s true. And like one of the biggest things I think agency owners don’t do well is they don’t manage their own mailing lists, let alone their client mailing lists. And email marketing has become one of my strengths over the years and think that is a big deal because the only thing you really own is your website. In your mailing list. Everything is kind of what we call rented land or other people’s land in the rules change by the day and it gets to be awful.</p>\n\n\n\n<p>Cory Miller (00:16:07) – So yeah, yeah, it’s, it’s interesting. I’ve talked to a lot of people. I think a lot of the WordPress community saw one thing from my work at things, but I go, you know, one want to know the key to what we built. There’s a lot of keys, right? But one of the big keys, especially marketing, was email marketing. And I love how you said website, what you really own, the website and email address. You don’t even own the rankings. You got to keep working on those things.</p>\n\n\n\n<p>Cory Miller (00:16:32) – You got to you don’t even necessarily on the traffic. You got to keep working on those things. But when you have the what click for me with email marketing, was this old school, now old school concept of direct marketing when people used to go door to door and still do of course, to sell something to that person directly. And I think that was when it clicked for me is email is direct marketing where I don’t control the algorithms and whatever tech billionaire is going to buy another of the social media platforms. But if I consistently build I was actually talking to entrepreneur last week about this, just she’s just getting started with the physical product. And I said, Hey, you know, all the jazz and the sexiness is out on the social media platforms. However, it’s a great way to get started, push them, funnel them into an email where you can still to date in 2023, directly market. It still works, but so many are adverse to it or don’t do the work to keep up their keep up, grow, maintain their email lists and use them properly.</p>\n\n\n\n<p>Rob Cairns (00:17:37) – And to segment them properly. Mean the big issue is. So I’ll give you an example. I have an email list that’s running about 7500 active right now. I’ve probably got, if you count people have an open stuff in like the last 60 days and probably closer to 1200. So the key is not to send emails to your host, send them to the 7500 that are active and then every six months touch base with the other people once in a while, like because honestly, that’s waste of time and money. Like don’t put your emphasis there, but you segment your list and figure out what people want from you and who’s going to open stuff. And as a result, on that 7500, I run an open rate of about listeners about 62% on a regular basis. Which is incredible.</p>\n\n\n\n<p>Cory Miller (00:18:29) – Yeah, indeed. And it all takes work. Websites, take work, emails take a work to properly do it well. So. So you know, a couple of the things I’m interested in. The last 15 years or so you’ve been doing, this is what you’ve seen kind of transition the evolution of WordPress you know, from and websites within that.</p>\n\n\n\n<p>Cory Miller (00:18:53) – So you know how WordPress has gone in the last 15 years. Where do you think it is now? Where do you think it’s going in the future, what your clients are seeing and value in as part of having a great web presence? And I’m curious your thoughts on those two things. So the underlying technology has grown 15 years. We just celebrated 20th anniversary of WordPress, which is just fascinating to me. Um, and then, you know, this, this changing perception, I think growing, valuing perception of websites, the value of having a WordPress type website.</p>\n\n\n\n<p>Rob Cairns (00:19:29) – So there’s a couple of things. When we all started with WordPress, you and I, it was basically a blogging platform and now we’re building these whole robust membership sites, e-commerce sites, we’re building all this stuff and it’s incredible. And people say, Oh, why don’t you go to an e-commerce platform? Well, I have to tell you, I picked up the paper today, this morning before we jumped on this call. Corey and Shopify, who we all know is one of the big e-commerce products, is in trouble with the Canadian government because they refuse to hand over shopping records to the tax people so they can go after individuals.</p>\n\n\n\n<p>Rob Cairns (00:20:10) – And the cool thing about WordPress is that’s all self contained. So as we get into this privacy era, everything’s within your dashboard and you can even buy marketing solutions like Groundhog Adrian, Toby or Fluent CRM, another one that resides right inside that dashboard which protects your privacy and puts you in control. And I think that’s the whole thing about WordPress. The other big thing I’ve seen is a big change in the hosting space. And you’ll agree with me, um, what’s old is good and what hosting companies have reinvented themselves in the last while. And two I like to point out to is one over at New fold and we both of us have a mutual friend there in the name of Dave Ryan at Neufeld. So Dave and his team, I’ve had many dealings with them. They were the old endurance and they came out of that. And they’re trying to reinvent themselves by running around and buying plug ins like they bought Yoast and they bought it and doing things like that. And then important for new fold, they’ve become more community aware than they’ve ever become before.</p>\n\n\n\n<p>Rob Cairns (00:21:19) – So this was not the idea of eight years ago or nine years ago. I can guarantee that. And they’ve changed. And then you take somebody like her friends up at GoDaddy and, you know, I know that team pretty well for work I’ve done, and they’ve reinvented themselves. They’ve come out of the ashes of the Danica Patrick ads, as we call them. Remember those? Could you see a sexist ad like that flying in today’s society? I don’t think so.</p>\n\n\n\n<p>Cory Miller (00:21:50) – No. We’ve evolved past that for sure for for better.</p>\n\n\n\n<p>Rob Cairns (00:21:55) – But they’ve also reinvented themselves. And then even in a hosting space, you got companies like Liquid Web and WP Engine and Cloud, and then you’ve got companies that were leaders that have kind of dropped off. And a company I throw into a group like that is Siteground think, you know. Ten years. Five years ago, they were great. And then somethings kind of happened. So things go cyclical. Um, in terms of the technology more, it’s worth mentioning where we’ve gone.</p>\n\n\n\n<p>Rob Cairns (00:22:25) – So we’ve gone from coding and WordPress with plugins to page builders and your team and I think this is one of the first with, with your builder product, right? And themes to, to build sites. And then we got into things like headway, which we all know the story of what happened there and they were part of their problems. They were miles ahead of their time and just not adapted. And then we got into the traditional page builders like the Beaver Builders, the Yeah, Elementor, the bricks, that kind of stuff, which is prominent now. And now we’re headed to this magical thing called blocks. And you know, there’s a couple block ecosystems. The one I use is cadence. I’ve been all in with Cadence for a couple of years now. So there’s evolution, that spot. And I think we’re we’re starting to see more is WordPress is becoming more than just a publishing platform. Automattic owns Tumblr, Automattic owns pocket casts, one of the biggest pocket podcast players out there. They own the day One journal, which is a journaling app, um, would encourage anybody out there who needs a journaling product to go get it.</p>\n\n\n\n<p>Rob Cairns (00:23:45) – It’s worth every penny of it, like honestly. So they’re trying to democratize that whole, the whole solution. So, so a lot that’s gone on in 20. Um.</p>\n\n\n\n<p>Cory Miller (00:23:59) – Yeah, there’s a whole history there and everything you talked about. I think what stands out was the hosting industry. It’s definitely evolved, grown and a lot of money has come into WordPress hosting space in particular. You talk about new Fold in Endurance, for instance, like it’s turned over, been sold and bought so many acquisitions in the space and for good reason, because WordPress is a great platform for millions of people to build their website on. So but you know, there’s a trend there too, which is you talked about the reinvention and kind of coming out of stuff. What I’ve seen in 15 years plus years or so is. Yeah, it starts out good. Trying to claim her to get new customers. New clients, show them, you know, help them with their stuff. And it seems a lot of cyclical ness of like, okay, they reached this point where now they’re trying to really all the hosting companies, I would say, should make a profit.</p>\n\n\n\n<p>Cory Miller (00:25:02) – But then there’s a swath that like, okay, increasingly trying to make it more profitable to understand part of business. However, then you see customer service and support start to kind of fade with some of that and then you get this whole, okay, they’re going down and then going up. And I’ve I’m not going to name the names, but there’s a lot there where you see the cyclical up and down of that hosting side, which isn’t always healthy for WordPress either. I get it as a business part. What they need to do for their shareholders, partners, all that kind of stuff. But it’s definitely changed from like 2008 when I think this was on a shared hosting plan for like, I don’t know, $5 a month or $10 a month at like HostGator. And it’s I’ve kind of bemoaned it some because what the effect now is the experience for the WordPress user, those people that are your clients that are using their website and there’s that up and down. They’ve had to ride some of that and it’s always not good thing for the health of the ecosystem.</p>\n\n\n\n<p>Rob Cairns (00:26:06) – It’s true. And the other thing I should add to to this discussion is I think the team up at Automattic, the parent company of WordPress, has been much more receptive to comments, suggestions than ever before. And I know some people don’t feel that way, but I think we’re in really good hands with Josepha being the executive director of the WordPress project, you know, and things like that. And I know on the Gutenberg side I’ve gotten to know Matthias Venture, The Gutenberg lead a little bit and, and people like our friends Polly Hack or people like Jessica Frick over at Percival, which is an automatic company. People like that have put us in pretty good hands, frankly.</p>\n\n\n\n<p>Cory Miller (00:26:52) – Yeah, my personal opinion is automatic has long term commitment to the industry and I’m really proud to have them as sponsors a lot of automatic and post status and for good reason. But you know a long term commitment to like they have had the opportunity for many years to really really monetize what WordPress is and have held back. I think this is only my personal opinion.</p>\n\n\n\n<p>Cory Miller (00:27:18) – No facts really share other’s leadership there. But get go have had a long term commitment because they believe in open source, they believe in the open web and the ecosystem is healthy. When you have a diverse set of people offering services and products to that, so you get great performance. Obviously they know WordPress inside and out and then the support and those are the things that have that kind of wane over time. In any hosting company that I’ve been, that I’ve been around, I’ve had I’ve been a customer at many of the ones you talked about had clients and friends at many of the ones that you talked about. And but the consistency, I think, is what matters overall. So I agree with you. Agree. Um, okay. So we’ve talked about a whole lot of stuff. Now I want to talk I want to ask this specific question related to your clients. What are you hearing from your clients about WordPress, how they’re using their websites? Because I love talking to our agency owners because tip of the spear for me is the people out there doing the work.</p>\n\n\n\n<p>Cory Miller (00:28:20) – For those people using WordPress, they might not even know or care that there’s this open source platform underneath it all. But what are you hearing from your clients about what WordPress and working with the websites?</p>\n\n\n\n<p>Rob Cairns (00:28:32) – Yeah, there’s a couple things. I don’t think my clients care what’s under the hood. So by that mean they don’t care if it’s a WordPress site, if it’s a custom site, if it’s something else, as long as it gives them the results they want. So one of the things I’ve been pushing in the community for the last ten years is don’t sell the solution. Sell what it brings you. I’m a big one. Outcome or something, not how you get there. And if anybody doesn’t believe that, I suggest you go look up a guy by the name of Simon Sinek. Start with why is his book and find his Ted talk and watch it and watch it again. So sell the the what you get out of it. So that’s the first one. I also think clients hate to say are dropping the security ball big time right now.</p>\n\n\n\n<p>Rob Cairns (00:29:21) – I’m working on a site right now where the client couldn’t find their backup that they were sending to a cloud drive for six days and they took them six days to find out where they put that backup. So one of the things I find with my clients is you have to help them manage their digital assets or their digital stuff, and even more so in small businesses. What happens if the business owner gets run over by a truck tomorrow? What happens if he dies tomorrow? Do you have a succession plan for your business? Do you know how to handle that? Most people don’t. So that’s a problem. And then the other thing is, I think a lot of people flock to WordPress because frankly, what are we powering now? 45% in the Internet, 50% somewhere in there. And I think that alone is a selling thing. That’s attraction. Thing is WordPress is open source. It can’t be secure the security holes every month. Well, guess what? Microsoft Windows plugs security holes on the first Tuesday every month called Patch Tuesday.</p>\n\n\n\n<p>Rob Cairns (00:30:27) – And the whole business world runs on Windows more than that. Right. And they’re still plugging holes. Security is a trust factor, not a it happened or it didn’t happen.</p>\n\n\n\n<p>Cory Miller (00:30:37) – So I like that because security is a non-essential part of the digital our digital world, particularly our Internet, it’s a part of it. The real question is how are the people or companies behind that making sure it’s always secure. I remember talking to a security expert. I don’t know, it’s been eight years now and they said it’s not a matter this is one that just all they do is security and they go, it’s not a matter of if we’ll get hacked, it’s when and what we’re doing continually. And I go, that’s part of the digital age. That’s where we’re at. So I love that emphasis from your point. It’s just not when it’s if. And what are you doing in the meantime to help proactively do that?</p>\n\n\n\n<p>Rob Cairns (00:31:19) – And I’ll take that one more. Corey I have a saying in my business that’s not if you’ll be hacked, it’s when you’ll be hacked.</p>\n\n\n\n<p>Rob Cairns (00:31:25) – And how do you recover where I take it? So I kind of look at this mess I’ve been dealing with, and a big part of the problem was the client didn’t have a site updated, the client didn’t have the PHP version updated, the client couldn’t find the backup. You see where this is going? Yep. And it’s we got to take care of those assets and we got to treat them like the they’re important. So that’s that.</p>\n\n\n\n<p>Cory Miller (00:31:52) – Just like you would lock your car or your house at night or your car if you’re driving into the supermarket or the grocery store, whatever that is, you’d lock your car because, you know, you do those things. We don’t even think about those things. They’re so embedded now and we need to be doing that. I love this message. We need to be doing that with our digital assets.</p>\n\n\n\n<p>Rob Cairns (00:32:11) – We’re a mutual friend of ours. You know, Kathy’s N over at K very well. And I turned to Cathy in January and said, I’m going to make you a prediction.</p>\n\n\n\n<p>Rob Cairns (00:32:20) – And she said, Oh, I don’t like your predictions are usually right. And I said, I’m going to declare 2023 as a year of the vulnerability, the first week of January. And that was coming out of the whole LastPass debacle that happened. And we all know about that one. And sure enough, and I think it’s partially awareness, but I think there’s a multitude of factors and it’s kind of played out that way. The other thing I’m hearing from clients is clients don’t realize that websites have to have a budget attached to them for their business. So marketing budget and they say, Oh, we do it in house. And I say, okay, so what’s your hourly rate worth? Oh, it’s worth $40 an hour. How many hours a month do you do? Oh five. So your marketing budget is 40 times five. So that’s the other thing. Business has got to take this stuff seriously and start to budget for.</p>\n\n\n\n<p>Cory Miller (00:33:17) – I love that Social Security and then budget, and that’s the mindset.</p>\n\n\n\n<p>Cory Miller (00:33:21) – So, you know, a lot of the conversations I’ve been having is the recognition from clients that their website is not just valuable, it’s an integral part of how they do business. Covid accelerated a lot of that. I think it’s like, Hey, we got so many physical location, bricks and mortar type businesses realizing when you can’t actually see a person face to face. So I have two way of a way to be able to do business. So I love that it’s integral. So security, part of life budgeting, you need to budget for it just like you would any other part of your businesses in the essential part of your business. And so many of the agency owners have talked to here at Post Status, they the clients are recognizing that it’s in some of the instances, I would say more like a B2B. They see it’s at a very, very valuable part of their overall sales strategy and they value it deeply. Some run their whole operations or half operations, you know, and items and post those two, we run our whole operation through online space so it feels foreign.</p>\n\n\n\n<p>Cory Miller (00:34:26) – But that’s not the way business is traditionally. It’s, you know, you go to a store, you travel, you walk, you ride in a horse and buggy or a car to get to. Things have changed. And that seems like what I’m hearing, too, is that mindset needs a change of like this is all a part of business domains, websites, all the platforms you might be on, all as important as that door that opens up into your business.</p>\n\n\n\n<p>Rob Cairns (00:34:51) – 100% and then look at the criticality of it. So, for example, if you’re an e-commerce site that’s making 30,000 US a day profit, then you need a different level of support than somebody that’s got a brochure site that is out there just to be the face of their business. So you got to think about things like that, too. Very much so.</p>\n\n\n\n<p>Cory Miller (00:35:12) – Okay, so security and budget. Anything else on your mind about when you when you’re working with clients and how they’re valuing their websites? Any perspectives you have to share there too.</p>\n\n\n\n<p>Rob Cairns (00:35:22) – I think a lot of clients in this day and age are unrealistic and think that’s the world we live in. So it’s a very much an I want it now world. It’s I want it yesterday. There’s no patience out there like to tell you I don’t think clients are any different.</p>\n\n\n\n<p>Cory Miller (00:35:39) – So. Yeah. So it’s the physical part of business, which I have a friend that has a restaurant supply business and I understand how like when you’re, you know, stove or cooktop is down, they can’t sell. And then now that okay, got to have it now. And that service side is pretty intense for them. I can see that now being applied to the business is where they see it as essential. I want to say that’s a good part, but when it comes with some mindset change of okay, we need to be able to budget for that and pay for that and, and knowing like in the middle of the night or whatever it is to have that kind of service turnaround is not always possible or realistic.</p>\n\n\n\n<p>Rob Cairns (00:36:27) – And communication is a big part of it too. I don’t think some clients communicate well, don’t think some agencies communicate well. Like, for example, I’m going on vacation next Wednesday. Yay me, I’ve already sent out an email to my entire client was saying, By the way, the only thing I’ll deal with while I’m away is a website down issue. Everything else sits till I get home and just tell them upfront. Now, they might not like to hear it, but that’s you’re allowed to take time off. You’re allowed to recharge.</p>\n\n\n\n<p>Cory Miller (00:36:58) – The good communication, getting ahead of it to manage those expectations? Yeah, absolutely vital. All right, Rob. Well, anything else you want to share that you’re excited about, that you’re working on or doing?</p>\n\n\n\n<p>Rob Cairns (00:37:10) – I think the big thing is the security side of it. Think, think. We just got to be aware and and make sure you’re aware and if and if anybody needs help agencies otherwise reach out, be glad to help them and be involved in the community.</p>\n\n\n\n<p>Rob Cairns (00:37:25) – That’s a big part of what you and I do. You do not repost status. As you know, I co-manage a large LinkedIn group with Courtney Robertson. I’ve got a podcast that’s, you know, it’s good for business awareness, but it’s also good for the community too. So get involved. The community. Somebody if you can go to a word camp, go says the guy who’s got no time to go to work. Camps right now have not been to a five check by I missed word camp Buffalo Oh boy did I take stuff for not being on that one because that was a that’s an hour and a half away. I didn’t go to Montclair this weekend because, again, I’ve got conflicts. And the other thing is, look after you and your family and look after how you feel. Look after your health. Because if you don’t do that, you can’t run your business. So keep that.</p>\n\n\n\n<p>Cory Miller (00:38:14) – Absolutely. Well, thanks, Rob, for being on post staff. Appreciate your work in the community and what you do with WordPress out in the world to our story.</p>\n\n\n\n<p>Rob Cairns (00:38:22) – Thanks for having me.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 19 Aug 2023 03:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";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:109:\"WPTavern: Equalize Digital Accessibility Checker Plugin Adds New Frontend Highlighting Feature Funded by NASA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147975\";s:7:\"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:120:\"https://wptavern.com/equalize-digital-accessibility-checker-plugin-adds-new-frontend-highlighting-feature-funded-by-nasa\";s: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:4865:\"<p><a href=\"https://equalizedigital.com/\">Equalize Digital</a>, a WordPress accessibility products and services company, has added a new frontend highlighting feature to its free <a href=\"https://wordpress.org/plugins/accessibility-checker/\">accessibility checker plugin</a>, which is used to perform audits on self-hosted sites. The feature was <a href=\"https://equalizedigital.com/nasa-funds-development-of-front-end-highlighting-feature-for-equalize-digital-accessibility-checker/\">funded</a> by the National Aeronautics and Space Administration (NASA), through Equalize Digital’s consulting work on the new NASA websites.</p>\n\n\n\n<p>NASA recently launched the <a href=\"https://beta.nasa.gov/\">beta version</a> of its WordPress-powered flagship site, which WordCamp US attendees may hear about next week during the team’s sessions, including Friday’s keynote address: <a href=\"https://us.wordcamp.org/2023/session/friday-keynote/\">For All Userkind: NASA Web Modernization and WordPress</a> and another presentation titled <a href=\"https://us.wordcamp.org/2023/session/hands-on-with-nasas-new-digital-platform/\">Hands on with NASA’s new digital platform.</a></p>\n\n\n\n<p>Equalize Digital was contracted to perform accessibility testing, user testing with screen reader users, and provide accessibility governance recommendations.</p>\n\n\n\n<p>“As part of the contract for those services, they also contracted us to develop this feature for the plugin,” Equalize Digital CEO Amber Hinds said. “They have an enterprise license but we decided in collaboration with them that we would make it a feature in the free plugin so everyone could benefit, not a paid-only feature.</p>\n\n\n\n<p>“They were actually really interested in that because it’s part of their mission to give back to humanity.”</p>\n\n\n\n<p>Prior to developing the frontend highlighting feature, the accessibility checker plugin only had reports inside the post edit screen, with output that is nearly indecipherable for less technical users who are not accustomed to reading HTML.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1493\" height=\"709\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/screenshot-3.png\" alt=\"\" class=\"wp-image-147988\" />\n\n\n\n<p>The new frontend highlighting feature makes the accessibility report’s output far more approachable for users who may not be developers. It puts a “view on page” link next to each issue found in the report, which brings users to the frontend where the element in question is highlighted with a dashed pink box. It also displays a panel that explains the issue in a way that is easier to understand as well as how to fix it.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1800\" height=\"1053\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Accessibility-Checker-Front-End-Highlighting-on-NASA.png\" alt=\"\" class=\"wp-image-147987\" />\n\n\n\n<p>The report in the admin has been updated as well so that it’s easier to read. A new image column displays any images related to issues and the Actions column includes a “View on Page” link leading to the issue highlighted on the frontend. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2640\" height=\"1710\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/image-2.png\" alt=\"\" class=\"wp-image-147991\" />\n\n\n\n<p>Hind said her team is working on making the tool more friendly to content creators and not just a development tool. The plugin will stay on the NASA website to help their team as they add and edit content over time.</p>\n\n\n\n<p>“In the future, we’re planning to add the ability to jump to the element in the block editor as well,” Hinds said. “(That’s slightly tricky because we scan the whole page, not just the content area so we have to exclude elements created by other parts of the editor or theme.)”</p>\n\n\n\n<p>Thanks to NASA’s funding, the new frontend highlighting feature is available to users on the <a href=\"https://wordpress.org/plugins/accessibility-checker/\">free version of the plugin on WordPress.org</a>.</p>\n\n\n\n<p>“Our goal is to make accessibility testing easier for every WordPress user, not just developers,” Equalize Digital CEO Amber Hinds said. “Accessibility Checker was developed to include a robust free version with this in mind. We want to make building websites that work for people with disabilities standard practice and were excited to work with NASA to make accessibility testing reports easier for non-developers to understand and take action on. Adding this feature to the free plugin was a no-brainer for us. We’re looking forward to seeing more WordPress website owners finding and fixing accessibility problems on their websites.”</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, 18 Aug 2023 21:00:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"Do The Woo Community: Woo AgencyChat Live with Ash Shaw and Mitch Callahan\";s:7:\"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=76066\";s:7:\"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://dothewoo.io/woo-agencychat-live-ash-shaw-mitch-callahan/\";s: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:410:\"<p>Join Ash Shaw from LightSpeed and Mitch Callahan from Saucal as they share insights from their WooCommerce agencies. </p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woo-agencychat-live-ash-shaw-mitch-callahan/\">Woo AgencyChat Live with Ash Shaw and Mitch Callahan</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 18 Aug 2023 10:31:43 +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: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:93:\"WPTavern: WordPress Community Summit Travel Fund Contributes $48K in Assistance for Attendees\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147963\";s:7:\"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/wordpress-community-summit-travel-fund-contributes-48k-in-assistance-for-attendees\";s: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:2052:\"<p>This year’s WordCamp US includes a Community Summit, an invitation-only contributor-focused event that will take place prior to the main conference on August 22-23, 2023, in National Harbor, Washington, DC. It will be the first summit in six years, since the last one was held in Paris, France in 2017.</p>\n\n\n\n<p>Historically, the summit has offered contributors the rare opportunity to hold in-person discussions on important topics across teams. In order to ensure the gathering is diverse and inclusive, previous community summit organizers have included a travel assistance program to remove the financial barriers of attending.</p>\n\n\n\n<p>The 2023 Community Summit travel fund is <a href=\"https://communitysummit.wordcamp.org/2023/about-the-community-summit-travel-fund/\">providing $48,000 in travel assistance</a>, thanks to a group of sponsors that includes Automattic, A2 Hosting, Elementor, and Weglot. The funding will support 38 attendees with roundtrip transportation ($31K for 24 people) and hotel stays ($16,500 for 66 hotel nights for 22 people).</p>\n\n\n\n<p>Attendees have been reminded about the <a href=\"https://communitysummit.wordcamp.org/2023/non-attribution/\">non-attribution guideline</a> which enables the event to offer a safe and inclusive environment for collaboration where comments are not attributed to specific individuals. Discussions, photographs, recaps, and summaries can be shared as long as they abide by the non-attribution guideline. </p>\n\n\n\n<p>The <a href=\"https://communitysummit.wordcamp.org/2023/schedule/\">schedule</a> has been published, featuring 26 discussion topics. Contributors will have dedicated sessions to discuss the criteria for delaying the upgrade of foundational tech, understanding contributor leadership roles, refining Five for the Future for a robust WordPress community, accessibility in the WordPress project, open source participation in global legislation, backwards compatibility in Gutenberg, among other interesting topics that lend themselves to cross-team collaboration.</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, 18 Aug 2023 04:02:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:97:\"WPTavern: WP Community Collective Funds First Fellowship for Accessibility Contributor Alex Stine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147922\";s:7:\"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:108:\"https://wptavern.com/wp-community-collective-funds-first-fellowship-for-accessibility-contributor-alex-stine\";s: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:3400:\"<img width=\"2227\" height=\"1305\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/02/alex-stine.jpeg\" alt=\"\" class=\"wp-image-141764\" />\n\n\n\n<p>The WP Community Collective (WPCC), a non-profit organization created to support individual WordPress contributors and community-led initiatives, has <a href=\"https://www.thewpcommunitycollective.com/2023/08/17/press-release-wppc-funds-first-fellowship/\">funded its first fellowship</a>. Alex Stine, a fully blind individual contributor who has been working with the WordPress Accessibility team since 2016, is the first recipient of the funds designated for the fellowship.</p>\n\n\n\n<p>WPCC reports that the fellowship received donations from 59 individuals and organizations that want to support the cause of improving the open source project’s accessibility. The organization uses <a href=\"https://opencollective.com/thewpcc\">Open Collective</a> as the fiscal sponsor for its 501(c)3 status, enabling donations to be classified as charitable giving. All donations coming into the organization are transparent and publicly documented. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1906\" height=\"1180\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-17-at-5.43.37-PM.png\" alt=\"\" class=\"wp-image-147952\" />\n\n\n\n<p>The fellowship provides Stine with five paid contribution hours per week for six months, which allows him to continue his work on <a href=\"https://core.trac.wordpress.org/search?q=alexstine\">accessibility reviews and patches in WordPress core</a>. It includes a travel stipend for WordCamp US where Stine is volunteering as a co-organizer and participating in the Community Summit. As the first to embark on a WPCC fellowship, Stine will also help establish a framework for future Accessibility Fellowship cohorts.</p>\n\n\n\n<p>“I am really excited for the future as this will allow me to commit real time to improving the project,” Stine said. “The support I received from the community shows me there are others who recognize the importance of accessibility.</p>\n\n\n\n<p>“Time itself is the biggest win here. The funding allows me to focus more of my day on WordPress and less on side work. The main projects include the Gutenberg post editor.”</p>\n\n\n\n<p>Stine recently conducted an <a href=\"https://www.youtube.com/watch?v=6H15BUb6_GU\">accessibility audit of Gutenberg</a>, which shows the current state of the block editor in WordPress 6.3. This video is very enlightening for anyone who hasn’t yet seen how Gutenberg works with assistive technology like a screen reader.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Stine has performed many accessibility audits for different products in the WordPress ecosystem. The fellowship funds enable him to continue his contributions on existing WordPress open source accessibility initiatives without having to take on as much consulting work.</p>\n\n\n\n<p>“Alex has demonstrated a deep commitment to creating an inclusive experience for all WordPress users,” WPCC co-founder and president Sé Reed said. “We are delighted by the community’s willingness to invest both in Alex and in the future of WordPress accessibility. In supporting his work, we aim to improve accessibility across the entire project, from the core software to the greater WordPress community.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Aug 2023 22:04:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"Do The Woo Community: The Metamorphosis of a Woo Agency with Jonny Martin\";s:7:\"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=76052\";s:7:\"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://dothewoo.io/the-metamorphosis-of-a-woo-agency-with-jonny-martin/\";s: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:409:\"<p>Jonny Martin from Built Mighty joins Robert, Robert and Mary Voelker from WooCommerce in this Woo AgencyChat.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/the-metamorphosis-of-a-woo-agency-with-jonny-martin/\">The Metamorphosis of a Woo Agency with Jonny Martin</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 17 Aug 2023 15:23:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:47:\"WordPress.org blog: WP20 – A Heartfelt Thanks\";s:7:\"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=15471\";s:7:\"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/2023/08/wp20-a-heartfelt-thanks/\";s: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:19589:\"<p>Earlier this year, WordPressers around the globe united to celebrate 20 years of community and innovation. There were parties, blogs, videos, and social media posts aplenty. And, of course, the trending hashtag, “#WP20”.</p>\n\n\n\n<p>Throughout April and May, community members reflected on their journeys – what brought them to WordPress and its personal meaning. The stories, tweets, and videos were inspiring, nostalgic, and even humorous at times. There was swag, and the cakes were epic.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Let’s take a look!</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">On WordPress turning 20, and the Audrey Scholars program: <a href=\"https://t.co/Etwh8H6xh4\">https://t.co/Etwh8H6xh4</a></p>— Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1662582800451776512?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">WordPress celebrates 20 years tomorrow. It\'s grown from a comment on a blog post to a web spanning phenomenon. Thanks to an outstanding community and the freedoms of Open Source. Happy Birthday, WordPress! <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/fght4XMJXb\">pic.twitter.com/fght4XMJXb</a></p>— Mike Little (@mikelittlezed1) <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649?ref_src=twsrc%5Etfw\">May 26, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Look at this cute <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> cake from <a href=\"https://twitter.com/RicksBakery?ref_src=twsrc%5Etfw\">@RicksBakery</a>! <a href=\"https://t.co/f88H3usR5R\">pic.twitter.com/f88H3usR5R</a></p>— Josepha Haden Chomphosy (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1662562362979676162?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"es\" dir=\"ltr\">Tenemos regalitos para los que vengáis esta tarde a la Meetup.<a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/PSPsbWluv7\">pic.twitter.com/PSPsbWluv7</a></p>— Meetup WordPress Torrelodones (@WPTorrelodones) <a href=\"https://twitter.com/WPTorrelodones/status/1671918091398258688?ref_src=twsrc%5Etfw\">June 22, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">So <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> is turning 20 years old today! <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <br /><br />Happy birthday to WordPress and its entire community! from me and <a href=\"https://twitter.com/MariekeRakt?ref_src=twsrc%5Etfw\">@MariekeRakt</a> <a href=\"https://t.co/9N9T0SnsdL\">pic.twitter.com/9N9T0SnsdL</a></p>— Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/1662398779360702465?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Happy 20th birthday, <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! Our Cebu meetup was a success! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f382.png\" alt=\"🎂\" class=\"wp-smiley\" /><br /><br />…and our community is growing. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4af.png\" alt=\"💯\" class=\"wp-smiley\" /> Thanks to <a href=\"https://twitter.com/hashtag/enspaceCebu?src=hash&ref_src=twsrc%5Etfw\">#enspaceCebu</a> for hosting our party! <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPressCebu?src=hash&ref_src=twsrc%5Etfw\">#WordPressCebu</a> <a href=\"https://twitter.com/hashtag/WPCebu?src=hash&ref_src=twsrc%5Etfw\">#WPCebu</a> <a href=\"https://t.co/TUFoKjuoxq\">pic.twitter.com/TUFoKjuoxq</a></p>— Cebu WordPress Meetup (@WPCebu) <a href=\"https://twitter.com/WPCebu/status/1664957630241189888?ref_src=twsrc%5Etfw\">June 3, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I\'m sure you\'ve seen by now, but today is WordPress\' 20th birthday! Thank you to <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> and <a href=\"https://twitter.com/mikelittlezed1?ref_src=twsrc%5Etfw\">@mikelittlezed1</a> for following through with a seemingly wild idea. I don\'t think anyone could have predicted we\'d end up where we are today. Happy birthday <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /> <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/tAZRlYThuS\">pic.twitter.com/tAZRlYThuS</a></p>— Jon Desrosiers (@desrosj) <a href=\"https://twitter.com/desrosj/status/1662616708064985088?ref_src=twsrc%5Etfw\">May 28, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"de\" dir=\"ltr\">Hier ist der Recap vom letzten Zürcher <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/Meetup?src=hash&ref_src=twsrc%5Etfw\">#Meetup</a> im <a href=\"https://twitter.com/westhive?ref_src=twsrc%5Etfw\">@westhive</a> inkl. Audioaufzeichnungen und Slides der Präsentationen, sowie ein paar visuellen Eindrücken des Abends. <a href=\"https://twitter.com/hashtag/BBQ?src=hash&ref_src=twsrc%5Etfw\">#BBQ</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/IycEcb4DQL\">https://t.co/IycEcb4DQL</a></p>— WordPress Zürich (@wpzurich) <a href=\"https://twitter.com/wpzurich/status/1674695261694701568?ref_src=twsrc%5Etfw\">June 30, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"qme\" dir=\"ltr\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /><a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> <a href=\"https://twitter.com/hashtag/WCEU2023?src=hash&ref_src=twsrc%5Etfw\">#WCEU2023</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/Uodqd2OotM\">pic.twitter.com/Uodqd2OotM</a></p>— Osom Studio WordPress & WooCommerce Agency (@OSOM_STUDIO) <a href=\"https://twitter.com/OSOM_STUDIO/status/1667524236406145024?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Celebrating <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> at <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> with <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <a href=\"https://twitter.com/JosephaHaden?ref_src=twsrc%5Etfw\">@JosephaHaden</a> <a href=\"https://twitter.com/matias_ventura?ref_src=twsrc%5Etfw\">@matias_ventura</a> <a href=\"https://t.co/9LM9HnEfYn\">pic.twitter.com/9LM9HnEfYn</a></p>— Felix Arntz (@felixarntz) <a href=\"https://twitter.com/felixarntz/status/1667536517705736193?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote>\n</div>\n</div>\n</div>\n\n\n\n<p>Want to see more tweets? <a href=\"https://wp20.wordpress.net/live/\">Check out the tweet wall here.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Bits & Bytes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wp20.wordpress.net\">Official website for WP20</a></li>\n\n\n\n<li>The #WP20 hashtag was used at least 18,000 times between March 1 and June 8, 2023 on social peaking on May 27 with at least 2,700+ metions</li>\n\n\n\n<li>165+ meetups took place to celebrate WP20</li>\n\n\n\n<li>At least 4,661 people attended a meetup across six continents</li>\n\n\n\n<li>100+ kits of swag were shipped to meetup organizers</li>\n</ul>\n\n\n\n<p>Want more social media for WordPress? Check out the official accounts here:</p>\n\n\n\n<ul>\n<li><a href=\"https://twitter.com/WordPress\">Twitter</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/wordpress/\">Instagram</a></li>\n\n\n\n<li><a href=\"https://www.facebook.com/WordPress/\">Facebook</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/company/wordpress\">LinkedIn</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/wordpress\">YouTube</a></li>\n\n\n\n<li><a href=\"https://www.pinterest.com/WordPress/\">Pinterest</a></li>\n\n\n\n<li><a href=\"https://www.tumblr.com/wordpress\">Tumblr</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Snapshots from WP20 Celebrations</h2>\n\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-15527\" />\n\n\n\n<img width=\"769\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=769%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15518\" />\n\n\n\n<img width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=768%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15523\" />\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-15516\" />\n\n\n\n<img width=\"828\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=828%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15517\" />\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-15522\" />\n\n\n\n<img width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr.webp?resize=768%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15524\" />\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-15519\" />\n\n\n\n<img width=\"1024\" height=\"941\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1024%2C941&ssl=1\" alt=\"\" class=\"wp-image-15525\" />\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-15520\" />\n\n\n\n<img width=\"1024\" height=\"851\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1024%2C851&ssl=1\" alt=\"\" class=\"wp-image-15521\" />\n\n\n\n<img width=\"1024\" height=\"769\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec.webp?resize=1024%2C769&ssl=1\" alt=\"\" class=\"wp-image-15526\" />\n\n\n\n\n<h2 class=\"wp-block-heading\">Props</h2>\n\n\n\n<p>WP20 celebrations, swag, websites, social media, graphics, and so much more could not have happened without the wonderful contributions of so many. Beyond the organizers of the 165+ events, there were many people working behind the scenes to ensure WordPress got the recognition it deserved. Thank you to everyone who worked behind the scenes to organize the meetups, create swag, and to spread the word. Some of these hardworking folks include: <a href=\"https://profiles.wordpress.org/nomadskateboarding/\">Mark Andrew</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, <a href=\"https://profiles.wordpress.org/mysweetcate/\">Cate DeRosia</a>, <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha Green</a>, <a href=\"https://profiles.wordpress.org/nickhamze/\">Nick Hamze</a>, <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a>, <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, Winston Koone, Megan Marcel, <a href=\"https://profiles.wordpress.org/ninianepress/\">Jenni McKinnon</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">Se Reed</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a>, Andrew Wikel, and <a href=\"https://profiles.wordpress.org/adamwood/\">Adam Wood</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Some More Fun</h2>\n\n\n\n<p>A WordPress event is not complete without a Wapuu, and not only was there one, but there was a whole campaign to color it in! Thanks to <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a> for creating the commemorative Wapuu!</p>\n\n\n\n\n<img width=\"737\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=737%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15532\" />\n\n\n\n<img width=\"737\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=737%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15528\" />\n\n\n\n<img width=\"722\" height=\"956\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?resize=722%2C956&ssl=1\" alt=\"\" class=\"wp-image-15531\" />\n\n\n\n<img width=\"832\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=832%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15534\" />\n\n\n\n<img width=\"819\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=819%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15533\" />\n\n\n\n<img width=\"1024\" height=\"829\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=1024%2C829&ssl=1\" alt=\"\" class=\"wp-image-15530\" />\n\n\n\n<img width=\"1024\" height=\"712\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=1024%2C712&ssl=1\" alt=\"\" class=\"wp-image-15535\" />\n\n\n\n<img width=\"709\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=709%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15536\" />\n\n\n\n<img width=\"737\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=737%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15529\" />\n\n\n\n\n<p>The Marketing team ran an interactive campaign, <a href=\"https://make.wordpress.org/marketing/2023/05/02/20-days-to-celebrate-20-years-of-wordpress-from-blogs-to-blocks/\"><em>From Blogs to Blocks</em></a>, a series of prompts across 20 days for WordPress enthusiasts to celebrate all-things WordPress.</p>\n\n\n\n<p>Additional campaigns took place on social media and included prompting folks to share their favorite WordPress memory and most cherished WordPress swag item, to highlight the 21 contributing teams, and even to share a birthday greeting.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">My fav <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> swag, which I use daily! This was the speaker swag from <a href=\"https://twitter.com/hashtag/WCBos?src=hash&ref_src=twsrc%5Etfw\">#WCBos</a> 2019. <a href=\"https://twitter.com/melchoyce?ref_src=twsrc%5Etfw\">@melchoyce</a>, I think you designed this stunning logo? <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/1sEIEMGzM9\">https://t.co/1sEIEMGzM9</a> <a href=\"https://t.co/F0ufF9msqP\">pic.twitter.com/F0ufF9msqP</a></p>— Angela Jin (@AngelaSJin) <a href=\"https://twitter.com/AngelaSJin/status/1650832707683864578?ref_src=twsrc%5Etfw\">April 25, 2023</a></blockquote>\n</div>\n\n\n\n<p>We had lots of digital goodies too! From 3D desktop wallpaper, to selfie-props for the celebrations, and more. <a href=\"https://wp20.wordpress.net/swag/\">You can download them here</a>.</p>\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\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?ssl=1\" /><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?ssl=1\" /></div><div class=\"tiled-gallery__col\"><img alt=\"WP20\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?ssl=1\" /></div></div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Got Swag? Need Swag?</h2>\n\n\n\n<p>It’s not too late to order your WP20 commemorative items. <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">Find shirts, stickers, and more, while supplies last</a>!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>See you in five years for the 25th!</strong></h2>\n\n\n\n<p>Sign up here to stay in the “know”!</p>\n\n\n <div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n <div class=\"jetpack_subscription_widget\">\n <div class=\"wp-block-jetpack-subscriptions__container\">\n <form action=\"https://wordpress.org/news/feed/\" method=\"post\" accept-charset=\"utf-8\" id=\"subscribe-blog-1\">\n <p id=\"subscribe-email\">\n <label id=\"jetpack-subscribe-label\" class=\"screen-reader-text\" for=\"subscribe-field-1\">\n Type your email… </label>\n <input type=\"email\" name=\"email\" class=\"no-border-radius required\" value=\"\" id=\"subscribe-field-1\" />\n </p>\n\n <p id=\"subscribe-submit\">\n <input type=\"hidden\" name=\"action\" value=\"subscribe\" />\n <input type=\"hidden\" name=\"blog_id\" value=\"14607090\" />\n <input type=\"hidden\" name=\"source\" value=\"https://wordpress.org/news/feed/\" />\n <input type=\"hidden\" name=\"sub-type\" value=\"subscribe-block\" />\n <input type=\"hidden\" name=\"redirect_fragment\" value=\"subscribe-blog-1\" />\n <button type=\"submit\" class=\"wp-block-button__link no-border-radius\" name=\"jetpack_subscriptions_widget\">\n Subscribe </button>\n </p>\n </form>\n\n </div>\n </div>\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:\"Thu, 17 Aug 2023 14:54: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:11:\"Dan Soschin\";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:83:\"WPTavern: group.one Acquires BackWPup, Adminimize, and Search & Replace Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147855\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/group-one-acquires-backwpup-adminimize-and-search-replace-plugins\";s: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:2191:\"<p><a href=\"https://www.group.one/en\">group.one</a>, a European cloud hosting and digital marketing services provider, has <a href=\"https://inpsyde.com/en/inpsyde-announces-sale-of-backwpup-adminimize-and-searchreplace/\">acquired</a> the <a href=\"https://backwpup.com/\">BackWPup</a>, <a href=\"https://wordpress.org/plugins/adminimize/\">Adminimize</a>, and <a href=\"https://wordpress.org/plugins/search-and-replace/\">Search & Replace</a> plugins from Inpsyde. Together the products have more than 1.1 million active installs and will join group.one’s growing portfolio of WordPress products, which include <a href=\"https://wp-rocket.me/\">WP Rocket</a>, <a href=\"https://imagify.io/\">Imagify</a>, and <a href=\"https://rankmath.com/\">Rank Math SEO</a>.</p>\n\n\n\n<p>Inpsyde sold the plugins to focus more on its consulting and product services.</p>\n\n\n\n<p>“This sale lets us concentrate on our core competencies and work more closely with our clients, like PayPal, Payoneer, and Mollie, providing the know-how to develop and reach their full potential with new avenues for advancement,” Inpsyde CEO Alex Frison said.</p>\n\n\n\n<p> The acquired plugins will be managed by the development team at WP Media, one of group.one’s brands, expanding its offerings beyond optimization and SEO to include backup and site management capabilities. </p>\n\n\n\n<p>“Backup and recovery solutions are crucial to protect websites against data loss and we look forward to further developing BackWPup, along with Adminimize and Search & Replace,” group.one CEO Daniel Hagemeier said. “Together with WordPress hosting from WP.one and one.com, and our flagship products WP Rocket, Imagify, and Rank Math SEO, WordPress users can now come to group.one to optimize, secure, maintain and promote their online presence.”</p>\n\n\n\n<p>When asked what specific features are being prioritized on the immediate roadmap, group.one representative Simon Kraft said “the smooth transition over to WP Media” is their focus following the sale. He was unable to comment on whether the commercial versions of the acquired plugins would be subject to any pricing changes.</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, 17 Aug 2023 03:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Should WordPress.org Support Threads Auto-Close After 6 Months?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147304\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/should-wordpress-org-support-threads-auto-close-after-a-year\";s: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:5389:\"<p>WordPress.org’s <a href=\"https://wordpress.org/support/forums/\">support forums</a> are a vital resource and communication tool for users supporting their own sites and developers extending the software. Visiting the forums often means users have gotten stuck somehow and need to have a successful support experience in order to continue on their WordPress journeys. They are looking for help deciphering the meaning of error messages, migrating sites, debugging their sites after an update, and many other common struggles of self-hosting.</p>\n\n\n\n<p>A <a href=\"https://meta.trac.wordpress.org/ticket/7161\">ticket</a> on Meta trac, which was opened three weeks ago, proposes that WordPress.org remove auto-closure from support forum threads and instead add a warning that the thread is old. Threads currently auto-close six months after last reply, unless manually closed sooner than that.</p>\n\n\n\n<p>Amber Hinds, plugin author and CEO of Equalize Digital, made a case for instances where it is necessary to respond to an old thread:</p>\n\n\n\n<ul>\n<li>As a plugin dev, we forgot to subscribe to a plugin’s forum and only saw support threads many months later. Currently, there is no way to provide assistance on these threads.</li>\n\n\n\n<li>If a user requests a feature that is not currently available and you release it many months later, it would be nice to update their support request and let them know.</li>\n</ul>\n\n\n\n<p>Hinds referenced a conversation on Post Status’ Slack where Matt Mullenweg recommended removing the closure for old threads completely and adding a warning in its place:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Let’s move away from auto-closing to just having a warning that you’re replying to an old thread</p>\n</blockquote>\n\n\n\n<p>Not all participants in the discussion are in favor of leaving support tickets open. Several contributors contended that this approach can lead to unproductive replies piling up or multiple people jumping in on threads with similar unrelated issues, making it difficult for developers to solve the original request. </p>\n\n\n\n<p>“Old topics mostly attract spam, me-too-pile’ons and random replies,<br />its very rare when an actual reply is needed to something that has no activity for <strong>six months</strong>,” WordPress support forums moderator Yui said.</p>\n\n\n\n<p>“Current policy is to leave such topics closed, however, making an <strong>exclusion</strong> and manually reopen it at request can be made possible when the reasons for it are <strong>compelling</strong> (It can be discussed on Support team weekly chat, if needed).”</p>\n\n\n\n<p>WordPress accessibility contributor Joe Dolson is in favor of giving plugin authors the ability to determine when a thread gets closed, a modification that partially addresses the issues at play.</p>\n\n\n\n<p>“It would help alleviate it to give plugin authors the ability to close a thread,” Dolson said. “Though when you have thousands of open support threads, that would still be a pretty significant potential burden.</p>\n\n\n\n<p>“I think there should be a better way of handling closed support threads – it’s a problem that auto-closed threads literally *cannot* be re-opened because they’ll just auto-close again. But I’m dubious about just leaving them open.</p>\n\n\n\n<p>“At the least, I think that removing the auto-closing *must* come with some ability for plugin authors to close threads; otherwise this would become totally unmanageable.”</p>\n\n\n\n<p>Changing thread closure policy could also impact the metric displayed on plugins, indicating how many issues have been marked as resolved in the last two months. If more people are allowed to jump in on threads with them open, the resolved threads metric may not be as meaningful.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"806\" height=\"510\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-16-at-4.06.11-PM.png\" alt=\"\" class=\"wp-image-147891\" />\n\n\n\n<p>Hinds recommends a hybrid approach, keeping auto-close in place but allowing plugin contributors to reopen threads, restarting the clock for auto-closure.</p>\n\n\n\n<p>“I discovered 12 support tickets yesterday on a plugin I had not realized we were not subscribed to, which I want to at least comment on to see if they still need help,” Hinds said. “I can’t do this. It’s a frustrating experience for me and clearly a poor user experience for the original poster or anyone else who encounters that thread with a similar problem.</p>\n\n\n\n<p>“Another option might be to auto-close them but add a button that allows them to be reopened by plugin contributors that sets another six-month (or maybe a shorter time period) timeline before auto-close.”</p>\n\n\n\n<p>It’s easy to forget that most people do have a vast network of WordPress professionals available to answer questions for them on Twitter or other networks, so the forums remain an important lifeline for users. Contributors have not yet come to a decision about whether leaving threads open for longer will provide a better experience or not. The discussion on <a href=\"https://meta.trac.wordpress.org/ticket/7161\">changing the auto-close policy</a> continues on Meta trac.</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, 16 Aug 2023 21:10:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Do The Woo Community: More WordCamp US Speakers Tips and Teasers\";s:7:\"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=76044\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://dothewoo.io/more-wordcamp-us-speakers-tips-and-teasers/\";s: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:387:\"<p>Listen to Courtney Patubo Kranzke, Sean Blakely, Jonathan Desrosiers, Sumner Davenport and Destiny Kanno.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/more-wordcamp-us-speakers-tips-and-teasers/\">More WordCamp US Speakers Tips and Teasers</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 16 Aug 2023 17:02: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: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:59:\"Do The Woo Community: WordCamp US Speakers Tips and Teasers\";s:7:\"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=76029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://dothewoo.io/wordcamp-us-speakers-tips-and-teasers/\";s: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:394:\"<p>Here tips and teasers from George Woodard, Danielle Zacaro, Hari Shanker, Aid Correa-Jackson, Ryan Smith and Shambi Broome</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordcamp-us-speakers-tips-and-teasers/\">WordCamp US Speakers Tips and Teasers</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 16 Aug 2023 14:37:43 +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:78:\"HeroPress: New life thanks to WordPress – Una nueva vida gracias a 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=5738\";s:7:\"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:130:\"https://heropress.com/essays/new-life-thanks-to-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=new-life-thanks-to-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:7201:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/08/081423-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress empowered me to craft a better life for my family. WordPress me permitió forjar una vida mejor para mi familia.\" />\nHear Jennifer’s story in her own voice.\n\n\n\n\n\n\n<p><a href=\"https://heropress.com/feed/#espanol\">Este ensayo también está disponible en español.</a></p>\n\n\n\n<p>Hello, my name is Jennifer Farhat, and I reside in Burnaby, a charming city nestled in British Columbia, Canada. My role as a Frontend Engineer at WebDevStudios, an amazing and globally distributed company entirely devoted to WordPress, allows me to collaborate with a diverse team across the world. Today, I’m excited to share my journey with you.</p>\n\n\n\n<p>I was born In the enchanting land of Venezuela, a South American gem renowned for its warm-hearted people and diverse climate, It has snow-dusted landscapes in Mérida, gentle plains of Los Llanos, and the sun-soaked beaches along the eastern shores.</p>\n\n\n\n<p>Before my journey to British Columbia, I enjoyed a vibrant life on Margarita Island, often dubbed the “pearl of the Caribbean.” This paradise on earth nurtured my passion for tennis from a young age. I climbed the ranks and became one of the top players in my country. Transitioning into a Tennis Coach, I imparted my knowledge to players of all ages. This continued even as I pursued my studies in computer science, graduating in 2010. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>My path naturally evolved to web development, and despite the bittersweet decision to step away from coaching, it marked the beginning of my journey as a dedicated web developer. </p>\n</blockquote>\n\n\n\n<p>My path intertwined with WordPress, a platform I quickly grew to adore. The company I worked for began embracing it, using WordPress to cater to our clients’ needs.</p>\n\n\n\n<p>However, the backdrop of my homeland’s struggles was undeniable. By 2016, the economic and political turmoil had escalated. Basic essentials became hard to find, despite having the means to acquire them. This dire scenario pressed upon my family, particularly my eight-month-old daughter who faced shortages of formula and diapers. The pivotal moment arrived in August 2016 when my family and I embarked on a tough choice – leaving our homeland. Our journey took us through Colombia before finally settling in the picturesque city of Vancouver, where reality felt like a picture-perfect postcard.</p>\n\n\n\n<p>The initial phase was an uphill battle, marked by paperwork hurdles and employment challenges due to our uncertain legal status. Just when we were about to give up and were contemplating leaving Vancouver, an opportunity surfaced – centered around WordPress. This newfound role not only offered the means to secure legal status but also laid the foundation for a brighter future for my daughter and my two-year-old son, who was born in our new home years later.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Grateful for this transformation, I credit WordPress for extending a lifeline at a crucial and difficult moment of my life.</p>\n</blockquote>\n\n\n\n<p>It empowered me to craft a better life for my family. In return, I remain dedicated to contributing to the community that has given me so much, knowing that my efforts will always fall short of the boundless generosity I’ve received.</p>\n\n\n\n<h1 id=\"espanol\" class=\"kt-adv-heading5738_ccceef-d5 wp-block-kadence-advancedheading\"><strong>Una nueva vida gracias a WordPress</strong></h1>\n\n\n\nEscucha el ensayo de Jennifer con su propia voz\n\n\n\n<p>Hola, mi nombre es Jennifer Farhat, y actualmente resido en Burnaby, una encantadora ciudad ubicada en British Columbia, Canadá. Mi rol como Frontend Engineer en WebDevStudios, una asombrosa empresa 100% remota a nivel global completamente dedicada a WordPress, me permite colaborar con un equipo diverso alrededor del mundo. Hoy, estoy emocionada por compartir mi historia.</p>\n\n\n\n<p>Nací en el maravilloso país de Venezuela, una joya sudamericana reconocida por su gente cálida y su clima variado. Cuenta con paisajes diversos, desde la increíble Mérida, las suaves llanuras en Los Llanos y hasta playas bañadas por el sol en las costas orientales.</p>\n\n\n\n<p>Antes de mi travesía a British Columbia, disfruté de una vida vibrante en la Isla de Margarita, a menudo llamada “la perla del Caribe”. Este paraíso en la tierra nutrió mi pasión por el tenis desde joven. Escalé posiciones y me convertí en una de las mejores jugadoras de mi país. Pase luego a ser Entrenadora de Tenis, compartiendo mis conocimientos con jugadores de todas las edades. Esto continuó mientras estudiaba en la Universidad, graduándome en 2010. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Mi camino naturalmente evolucionó hacia el desarrollo web, a pesar de la agridulce decisión de apartarme del deporte, marcando el inicio de mi camino como una desarrolladora Web dedicada al 100%. </p>\n</blockquote>\n\n\n\n<p>Mi camino se entrelazó con WordPress, una plataforma que rápidamente llegué a adorar. La empresa para la que trabajaba comenzó a adoptarla, usando WordPress para atender las necesidades de nuestros clientes.</p>\n\n\n\n<p>Sin embargo, la situación por la que pasaba mi país era innegable. Hacia 2016, los problemas económicos y políticos habían escalado. Productos de básica necesidad se volvieron difíciles de encontrar. Esta difícil situación afectó a mi familia, particularmente a mi hija de ocho meses que enfrentaba escasez de fórmula y pañales. El momento crucial llegó en agosto de 2016, cuando mi familia y yo tomamos la difícil decisión de dejar nuestra patria. Nuestro viaje nos llevó primero a Colombia y finalmente a la pintoresca ciudad de Vancouver, donde parece que uno vive dentro de una un postal perfecta.</p>\n\n\n\n<p>La fase inicial fue una batalla cuesta arriba, marcada por obstáculos y desafíos laborales debido a nuestra incierta situación legal. Justo cuando estábamos a punto de rendirnos y pensábamos en dejar Vancouver, surgió una oportunidad de trabajo centrada en WordPress. Este nuevo rol no solo ofreció los medios para asegurar un estatus legal, sino que también sentó las bases para un mejor futuro para mi hija y mi hijo de dos años, quien nació años después en nuestro nuevo hogar.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Agradecida por esta transformación, le doy crédito a WordPress por brindarme una oportunidad en un momento crucial y difícil en mi vida. </p>\n</blockquote>\n\n\n\n<p>Me permitió forjar una vida mejor para mi familia. A cambio, estoy comprometida a contribuir a la comunidad que tanto me ha dado, sabiendo que mis esfuerzos siempre quedarán cortos frente a la generosidad sin límites que he recibido.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/new-life-thanks-to-wordpress/\">New life thanks to WordPress – Una nueva vida gracias a WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Aug 2023 14:34:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Jennifer Farhat\";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: #87 – Jonathan Wold on Guildenberg, What It Is and How It Aims to Help Product Owners\";s:7:\"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=147811\";s:7:\"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:110:\"https://wptavern.com/podcast/87-jonathan-wold-on-guildenberg-what-it-is-and-how-it-aims-to-help-product-owners\";s: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:65646:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. 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 Guildenberg, what it is and how it aims to help product owners.</p>\n\n\n\n<p>If you’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’d like us to feature on the podcast, I’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 Jonathan Wold.</p>\n\n\n\n<p>Jonathan has been deeply involved in the WordPress community for almost two decades. He began writing tutorials and freelancing, which eventually died him to the agency world, where he worked on large enterprise projects. In the past five to six years, Jonathan has shifted his focus to the broader WordPress ecosystem. He’s also had the opportunity to work at WooCommerce and collaborate with the team at Automattic. Despite the demands of his busy career, Jonathan’s passion for WordPress has only grown stronger over the years.</p>\n\n\n\n<p>Jonathan is one of the co-founders of Guildenberg, and in the podcast today we discuss what this project is and how it aims to revolutionize the WordPress product ecosystem.</p>\n\n\n\n<p>We start the conversation by highlighting the importance of behavior in the WordPress community and the core values that drive the platform. Autonomy, meritocracy, utility, and giving credit where credit is due. Jonathan emphasizes the significance of giving credit to the original creators of work, even though it may not be legally required.</p>\n\n\n\n<p>We move on to talk about how Guildenberg aims to solve some of the key problems faced by WordPress product owners, such as monetization, compatibility and distribution. Jonathan envisions a system where product owners pay a fee for distribution of their products. With a portion of that revenue going back to the Guildenberg project. By aligning incentives and providing economic motivations for contributors, Guildenberg seeks to create a sustainable and thriving ecosystem for the open web.</p>\n\n\n\n<p>We get into the inspiration behind the name Guildenberg, which combines the idea of Gutenberg and the guild institutions from medieval Europe.</p>\n\n\n\n<p>We also discussed the team’s longterm vision of creating an app store for WordPress that spans the majority of installations, offering monetization options, and enforcing compatibility standards.</p>\n\n\n\n<p>If you’re a WordPress developer, who’s keen to find a way to create visibility for your product this podcast is for you.</p>\n\n\n\n<p>If you’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’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Jonathan Wold.</p>\n\n\n\n<p>I am joined on the podcast today by Jonathan Wold. Hello, Jonathan.</p>\n\n\n\n<p>[00:03:58] <strong>Jonathan Wold:</strong> Hey Nathan, how are you?</p>\n\n\n\n<p>[00:04:00] <strong>Nathan Wrigley:</strong> Very good. Jonathan’s joining us, I think, for the second time on the Jukebox podcast. We’re going to have an in depth conversation about something which is close to his heart. It’s called Guildenberg. I’m going to make a link in the show notes to an article which I think probably would be a wise idea to read to give you some perspective.</p>\n\n\n\n<p>Before we begin and dive into the subject matter though, Jonathan just tell us who you are. Tell us about your WordPress journey.</p>\n\n\n\n<p>[00:04:27] <strong>Jonathan Wold:</strong> So I’ve been immersed in the world of WordPress now for about 18 years. I started out writing tutorials and I did a bunch of freelance early on. Spent a couple of years in the agency world doing some big enterprise stuff. And then spent the past five, six years or so focused on the ecosystem more broadly.</p>\n\n\n\n<p>I also got to spend some time at WooCommerce. The lovely folks over at Automattic, and yeah it’s been quite nonstop for me. I think a good indicator is that I like WordPress even more 18 years later than I did when I started. And I think that the community is a massive part of that. That’s what got me hooked initially.</p>\n\n\n\n<p>Folks on the .org forums answering my questions and showing me, oh wow, there’s something about this like open source space. And not just open source, but WordPress specifically that drew me. And yeah never looked back.</p>\n\n\n\n<p>[00:05:23] <strong>Nathan Wrigley:</strong> Great, thank you. So we’re going to be talking about something called Guildenberg. I’m going to repeat that word, Guildenberg. It’s not the word that I’m used to saying, which is Gutenberg. So we’ve got the berg bit, that’s the same. But then we’ve got this guild bit at the beginning and I guess maybe Europeans, I don’t know, maybe I’m mischaracterizing that, but it feels like Europeans who have a thirst for historical knowledge perhaps know what guilds are.</p>\n\n\n\n<p>I don’t know if it was something that came across the pond to North America, but did it? And if it didn’t, what are guilds?</p>\n\n\n\n<p>[00:05:57] <strong>Jonathan Wold:</strong> So that’s a fun way to frame it. So first I’ll call out that one of the things that I’ve loved about this community. Because it is by default, like international in nature, I’ve had the privilege of being exposed to a lot of ideas that might not have been as prevalent to me with my North American base otherwise.</p>\n\n\n\n<p>I can’t recall where the concept of the guild first came up, but where I went to immediately was reading about the history of guilds in Europe, right? That’s the foundation for a lot of my initial thinking about this. Here in the States we have the concept of unions, which has some parallels, but it’s focused more on trade and specific lines of work.</p>\n\n\n\n<p>Yeah my basis for this was reading about the history of guilds in Europe. The positives and the negatives from a few different perspectives and I found that super helpful.</p>\n\n\n\n<p>[00:06:49] <strong>Nathan Wrigley:</strong> I think at least anyway, that the guild traditionally was an organization which would bind together people who did a very similar thing. So, for example, you might have, I don’t know, a printer’s guild. Or you might have a blacksmith’s guild or something like that. And it would be a kind of club, for want of a better word, of people so that they could share their experience. They could share their knowledge. They could keep up to date with what the other people were doing. I think I’ve got that right.</p>\n\n\n\n<p>[00:07:18] <strong>Jonathan Wold:</strong> Yes, and it’s curious too that just by the nature of who’d be involved you’d often have competitors. Yet they were working together. There’s benefits and trade offs, right? But overall though the idea is that they’d work together to improve the quality of their work.</p>\n\n\n\n<p>So you had guilds that took this quite far where they also have seals that, you know, used by the guild to say okay, we have a quality approval here. Others who it was more loose, like an association where we’re supporting each other, sharing ideas, et cetera. Some got pretty heavy into regulating production and monitoring, and there’s a lot of different facets of it.</p>\n\n\n\n<p>The heart of it though, and my primary interest is facilitating cooperation in what would otherwise be a decentralized space. And many of these just somewhat by their nature, the folks who’d be involved in these guilds, they were individual entrepreneurs doing their own things and decided to come together to facilitate cooperation, collaboration around opportunities of mutual interest.</p>\n\n\n\n<p>[00:08:21] <strong>Nathan Wrigley:</strong> So you’ve put a article together. It was written at the latter part of last year, August, 2022. It’s called a Guild for WordPress Businesses. And helpfully you start out explaining your knowledge of what a guild is. But the intention of that really is to begin the conversation in which you propose, perhaps there should be a WordPress businesses guild. And you’ve come up with the name Guildenberg which for obvious reasons, kind of fits the ecosystem just perfectly.</p>\n\n\n\n<p>Now in order to have a solution to something, presumably you have to have a problem for it to be solving. So again, right near the top of the article you outline three problems which you see going on in the WordPress product business space at the moment.</p>\n\n\n\n<p>Now I could introduce them but I feel it’s probably better to just hand it over to you and you tell us what your thoughts are.</p>\n\n\n\n<p>[00:09:11] <strong>Jonathan Wold:</strong> So quick shout out to my co founder Anna Maria Radu. She came up with the name, and it was a fun process. Like what are we going to call this thing? And she’s the one who picked it up and combined the idea of Gutenberg and the guild together. So she gets that credit, among many other credits.</p>\n\n\n\n<p>The key starting point here was like what problems are we setting to work on, right? And it was that problem set that we’ll touch on in a moment that became the basis for saying, okay, what construct could we use to solve these? And that’s where the concept of the guild began to fit in.</p>\n\n\n\n<p>So within WordPress specific product businesses, and I think that’s important to call out too. I care about the agency space, I have a lot of context and background for that. But what I think, let me take a step back. For about five, six years now I’ve been thinking more and more about WordPress as an ecosystem, and thinking about, okay, what are some of the leverage points?</p>\n\n\n\n<p>What are ways that we can grow and improve this ecosystem? And for me that matters because of the position that WordPress takes within the context of the open web. I believe that the healthier our ecosystem is, the better it is for the web.</p>\n\n\n\n<p>I like the proprietary platforms that they hold. They can foster innovation. They can bring clear value. I don’t want to see a web though dominated by proprietary platforms. And so I look at WordPress’ place today, it’s great in terms of its market share. We want to see it become even healthier and stronger, and be in a place where the proprietary and open source are meeting together. But there’s a balance of power there.</p>\n\n\n\n<p>So that’s a starting point. What can we do to grow the ecosystem and make it stronger? At first, and for several years, I was quite convinced that helping hosting companies work together was going to be how we move the ecosystem forward. I still think that’s a piece of the puzzle.</p>\n\n\n\n<p>But what I focused on, what I realised, in that process is that you have to figure out a way to align incentives. And there were some inherent problems with facilitating cooperation amongst the hosts. And that could be a whole topic in and of itself. What I ended up settling on though is that of the three primary business groups in the ecosystem, you have the service providers, that’s your agencies and freelancers, you have the hosting providers, and you have the product companies.</p>\n\n\n\n<p>I believe that the product companies have the greatest opportunity for leverage, to grow and improve the ecosystem. Because they’re the ones that are directly touching, okay so there’s that idea that they have the greatest leverage. And I think that the reason why is when you look at WordPress through this framing of being an operating system for creating on the open web, which is something that Matt Mullenweg has been talking about for years now. He first introduced that idea.</p>\n\n\n\n<p>If you think about WordPress as an operating system, and then you think about the products as being on the app store, that’s where I think it starts to come into perspective.</p>\n\n\n\n<p>You need a whole ecosystem of hosting providers and service providers, but the products are like the apps that bring the core value. And if you think about it there’s very few people these days who would use WordPress without any plugins, without any apps, if you will.</p>\n\n\n\n<p>And so I ended up settling on, okay, product companies are the key leverage point for being able to grow and strengthen the ecosystem. So what problems do they have? And there are three problems that stand out to me that are faced by product companies in the space. And I’m going to focus first on those that are just WordPress specific. SaaS is another category but they have some of their own, they have a different set of problems.</p>\n\n\n\n<p>For WordPress founders the first one is what I just call like monetisation. This category of monetisation. A lot of folks who grew up in the WordPress space, created products, often had developer backgrounds. Monetisation has been something that we’ve struggled with. Whether it’s pricing, whether it’s business model, whether it’s just that we’re copying someone else who didn’t get that figured out. We tend to be poorly monetised in the space.</p>\n\n\n\n<p>And the key here is it’s misaligned with value. There are end users, for instance, that look at the price of a WordPress product and don’t trust it. You’re telling me that I’m going to build my business on this product that only costs a couple hundred dollars. I’m supposed to have confidence in that when the SaaS counterparts are thousands of dollars.</p>\n\n\n\n<p>So there’s more to it than that. It’s great to be able to pass on value to the end users but it needs to be a conscious decision. And a lot of times folks making decisions on monetisation don’t have a strong basis for it. And they’re not focused on aligning with value to the end user. They’re just picking an arbitrary price. So that’s problem one.</p>\n\n\n\n<p>Problem two is compatibility. And it’s this idea that a lot of these products just don’t work well together. Not because they don’t intend to but because there’s so many different ways of doing things. There aren’t any shared, well there are intentions towards shared standards, but there’s missing alignment of interest to actually enforce those standards and improve them.</p>\n\n\n\n<p>It’s like product developers will do so because they care about it, but those tend to be the minority. And oftentimes some of the most popular plugins don’t do that. It’s a lot of work and there’s not a lot of incentive to make things all work well together.</p>\n\n\n\n<p>The last one, and I think the one that shows the most, that sticks out the most, that’s the most pressing, the most problematic for folks, is distribution.</p>\n\n\n\n<p>You have these products that solve a clear problem for their audience. There’s a clear value proposition. They have that, what we’d call product market fit. And yet the majority of their addressable market within the WordPress ecosystem has no idea that they even exist. According to WebPro’s data we have 92 million active WordPress sites.</p>\n\n\n\n<p>And on the one hand, if you’re building a product in the WordPress space that’s fantastic, right? You have a massive addressable market that you can get to. But on the other, there’s no clear cut way today to actually get to that addressable market. For the simple fact that all of those 92 million are spread out over thousands of different hosting companies, who are somewhat effectively their own ecosystems in and of themselves.</p>\n\n\n\n<p>[00:15:15] <strong>Nathan Wrigley:</strong> Makes perfect sense. So let’s deal with those in turn. The monetisation piece where you talk about the fact that businesses are often either undervaluing their offering, or there’s a perceived, prejudice is the wrong word, but just the idea that things in the WordPress ecosystem ought to be cheap, everybody else is cheap so I should probably be cheap because I need to undercut my main competitor.</p>\n\n\n\n<p>I don’t really have any insight into the world outside of WordPress, so I don’t really know how far that argument carries. Perhaps you do? What I’m really asking for there is a bit of clarification. Are we orders of magnitude behind in terms of the value that we put on our products? Are we, for example, charging a fifth, a quarter, a third of what you might typically find elsewhere?</p>\n\n\n\n<p>[00:16:02] <strong>Jonathan Wold:</strong> So it depends. I would say at least from what I’ve observed and my sense of things on just the small business front, we’re behind but not terribly behind. Where it really starts to show up is with mid market and enterprise pricing. If we even go that far, right?</p>\n\n\n\n<p>Like enterprise certainly makes use of WordPress and there’s a pretty big disconnect overall between value and price and business model even. And just for instance, offering enterprise level support.</p>\n\n\n\n<p>It’s hard to pin down because sometimes it will be based on verticals, like you’ll have a WordPress creator or WordPress product that will focus on a particular vertical. But they’re not really matching the expectations in that vertical. It’s all over the board. On the one hand, it’s delightfully autonomous, people have the freedom to do whatever they want.</p>\n\n\n\n<p>The real problem that I see with this is that they’re not explicitly aligning it with value to that end user, which can vary. An enterprise, for instance, they have a whole different, they’re doing millions of dollars a month in revenue and the plugin that they’re using as a basis for that is only a couple hundred dollars, that kind of scares them, right? Like how do we know that we’re gonna get the support that we need? And the author hasn’t even necessarily considered that.</p>\n\n\n\n<p>[00:17:17] <strong>Nathan Wrigley:</strong> It is interesting as well, you were talking about products that were in the region of sort of $200 and presumably that was the sort of southern estimate. But it’s not difficult to find plugins that are considerably cheaper than that as well. You know the number 49 and 47 dollars for a license, for a single site license, for something might be something that you see all over the place. And it does beg the question, how many of those licenses does a product developer need to move in order for their business to become worthwhile to them?</p>\n\n\n\n<p>You know if you’re going to be putting in the time to have that as your single focus, which in many cases I’m sure the developers would love to have. You really do have to be shifting tens of thousands of those, for support and all of the things that go along with that. So yeah, I think undervalued is an interesting term there.</p>\n\n\n\n<p>[00:18:08] <strong>Jonathan Wold:</strong> And it’s interesting. Some folks might infer from this that, oh we just want to like price fix the ecosystem. Like no that’s not interesting to me at all. I love folks having the autonomy to price whatever they want to. What I’m concerned about, because it’s also a good way to drive innovation too, right?</p>\n\n\n\n<p>If you’re going to charge more it should be tied to value. It’s not just about extracting. It’s how do you align with additional value to the end user? And just the general challenge I see, and I think this is one that we solve through education and through modeling, is developers and product owners, entrepreneurs who just aren’t asking the right questions, and aren’t focused on that value piece.</p>\n\n\n\n<p>That’s like oh okay, well my competitors are generally doing this so I’ll just do less. Or they’ll think oh if I just do less I’ll get more volume. But they’re not considering the longterm consequences of charging less, and whether they’ll be able to support it longterm.</p>\n\n\n\n<p>So it’s a problem that we solve I think through education and through better examples in the space, and we’re starting to get more of those. But I just wanted to point out it’s not like I just want everyone to increase their prices. I want people to align with value for the end users. And a lot of cases that does include increasing your prices so that you can provide more value to them. But that’s not always the case. Sometimes it’s keep the price low.</p>\n\n\n\n<p>[00:19:22] <strong>Nathan Wrigley:</strong> Yeah. And then compatibility was the second point that you mentioned. This is really curious, isn’t it? Because I guess if you’re developing your own SaaS platform, really you don’t have any compatibility problems. You simply need to develop your own stack and you can ship whatever you like, whenever you like. So that doesn’t exist.</p>\n\n\n\n<p>But also if you are building on top of, let’s say WordPress’ rivals, for example Wix or Squarespace or Shopify. Again, you’ve really only got one target to worry about. And that’s what Wix are doing and what Shopify are doing. So long as you’re keeping abreast of all of that, you’re good to go.</p>\n\n\n\n<p>Whereas, as you say, in the WordPress space, 60,000 plus I think it is at the moment, WordPress plugins, the combinations there are almost infinite. And that really can upset your business. I would imagine that a typical WordPress company support channel is constantly filled up with emails saying, well I’ve got these plugins and they don’t seem to work together, what do I do? And yeah, what do you do? So yeah, this is interesting endeavor.</p>\n\n\n\n<p>[00:20:21] <strong>Jonathan Wold:</strong> This especially shows up with the hosting providers, right? They’re the ones who often hear this first from the end users. And it’s a bit classic, right? If something’s not working, a lot of times folks will, one of the standard advice is well try to disable all the plugins and then kind work backwards from there. Which is a bit of a nightmare scenario really. To uninstall all your apps, I’m like what I don’t to do that. Like I picked these, there’s a reason for all this.</p>\n\n\n\n<p>So this often comes up with hosts and compatibility is overall in all my conversations with hosts, like one of, if not the number one cost centre for WordPress is stuff that just doesn’t work together.</p>\n\n\n\n<p>And again, I think that the core problem here is aligning incentives. It’s open source. One of the things we love about WordPress is the flexibility to do whatever we want. What often happens, and there’s benefits to this, but you’ll have developers who will do their own custom interfaces. They’ll try some new things. They’ll bring this thing, this development practice in or that one. They’ll try to use this SDK or something else. Like it’s just all over the board.</p>\n\n\n\n<p>The flexibility is great, but the trade off really shows up on the compatibility front where these things just don’t work together. And there’s a lot of cost to the end user or to the developer, when they’re trying to make things work with someone else. Including just a lot that’s outside of their control entirely. You could care about compatibility, put in all the effort, maybe you even create a patch for some other plugin author, and there’s no guarantee they’ll ever do anything with it.</p>\n\n\n\n<p>[00:21:47] <strong>Nathan Wrigley:</strong> That’s true. I speak to developers fairly frequently, some of whom do literally patch other people’s plugins so that they can get their support ticket queue down to zero. Yeah that’s really interesting. I guess the model that we would love to have, on the one hand, would be something akin to you know the Apple ecosystem where if an app is literally crashing the iPhone, Apple will just remove it from the ecosystem until it’s mended.</p>\n\n\n\n<p>Now that’s brilliant in the one sense that you can just get rid of all problems with the flick of one switch. But the downside of that is that system is about as closed as it possibly gets, and 30% of the revenue goes to Apple in that case. So swings and roundabouts really. Seemingly this is going to be a really difficult one to tackle.</p>\n\n\n\n<p>So is your endeavor around compatibility really just promoting what compatibility is? And just letting people know what the guidelines are for developing things and just making people good citizens of the WordPress development landscape.</p>\n\n\n\n<p>[00:22:45] <strong>Jonathan Wold:</strong> That’s a part of it, but I really think we have to align incentives. Let’s talk about the app store piece. My longterm vision, so on the one hand, I’m okay with this looking like any number of things so I’m not caught up on the details of it. But like my longterm vision and what we’re laying the groundwork now with Gildenberg is for there to be a quote unquote app store that spans 80% of all the WordPress installs out there. That solves a lot of these problems built into it, right?</p>\n\n\n\n<p>You’d have the monetisation piece taken care of by just accounting for standard models and having examples, etc. You’d have compatibility built in by having standards that are enforced at that submission level. If you’re going to be in this app store you have to follow these standards and guidelines and best practices. There’s a review process, etc.</p>\n\n\n\n<p>The incentive is there because you’re offering distribution. They’re like yeah this is worth doing. A developer is like yeah we’ll align around this shared standard which is ideally community created because we want the distribution on the other side of this.</p>\n\n\n\n<p>Now no one has to do it. This is I think where the difference shows up between what Apple has done. And there’s some comparisons to like, what do you have in the Android ecosystem? Our goal is not a hundred percent. Our goal is just the majority of WordPress installs. There’ll always be people who don’t want it.</p>\n\n\n\n<p>But it’s more than enough to be significant and to create those aligned incentives for folks to say oh yeah I’m going to follow these standards. And we get the, I don’t want to just have guidelines and playbooks and things that kind of on their own. There needs to be real incentives for people to do it. And distribution to me is the big incentive.</p>\n\n\n\n<p>[00:24:23] <strong>Nathan Wrigley:</strong> So distribution then, which is the third part, you mentioned it in terms of the 40 plus percent of the web which is using WordPress. And I think I’m right in saying that, is this really around discoverability as much as anything else? It’s trying to get traction for your product in a marketplace where you’re up against thousands of people. So if a guild were to be created there would at least be some structure, some formal network that you could rely upon to help spread the word if you like.</p>\n\n\n\n<p>[00:24:50] <strong>Jonathan Wold:</strong> Yeah it’s a combination of things. Discoverability is one of them and there’s different ways that you solve that. But .org for all the things that it does well is not built around, nor incentivized to solve, commercial interest problems. Not today at least, not that it couldn’t be in the future.</p>\n\n\n\n<p>The plugin review team is volunteer led. We have specific guidelines for specific reasons. And while we want to see growth and improvement there’s only so much that you can expect given the incentives, right? Like it’s volunteers and they work really hard to be as agnostic and neutral as possible. And at the end of the day, just from a end users and a product perspective, from a product perspective being listed on .org is no guarantee that you’ll be discovered by anyone, right? It’s par for the course, but .org is not trying to solve the discoverability problem. And ultimately plenty of folks get stuff like outside of .org.</p>\n\n\n\n<p>[00:25:49] <strong>Nathan Wrigley:</strong> So the idea then behind all of those three problems is that you’ve got a potential solution, this idea of a guild.</p>\n\n\n\n<p>So let’s move on to that then and describe what that guild looks like. Again, I guess it’s probably apropos right now to say you have not really fixed upon these ideas. This is the beginning of this conversation.</p>\n\n\n\n<p>You presumably would love for people having heard this podcast get back in touch with you and say I like this idea. I want to put my idea to you, see if we can take it in this direction. But yeah just outline what is the guild that you would hope to build? What are the designs that you’ve got behind it?</p>\n\n\n\n<p>[00:26:22] <strong>Jonathan Wold:</strong> The core idea right is to say okay what vehicle, what construct, is best suited to solving these three problems? It’s all rooted in this idea of finding and aligning incentives. So the App Store vision is the North Star. And the idea behind Guildenberg is okay, how do we lay a foundation for these things?</p>\n\n\n\n<p>So what I’ve been focused on over the past year or so with my co founders is, what’s the right economic engine for this? Like there’s a ton of stuff that we want to do. We want to create playbooks, open source things, facilitate just a bunch of stuff in the space. I’m super interested in how this connects to Five for the Future.</p>\n\n\n\n<p>And for all of that it’s like we need a strong economic engine that enables us, that aligns with value, that builds momentum in the right direction and enables us to do these things. And in my piece I originally outlined some different ideas on revenue models et cetera.</p>\n\n\n\n<p>What’s become clearer since, and what I’m focused on now is this the distribution problem itself. Like monetisation and compatibility, those are things that are going to become clearer with time. What I’m focused on now is okay, how do we start helping products today grow through distribution? And distribution itself then becomes our core economic engine. That’s the business of Gildenberg Inc, Gildenberg .com if you will.</p>\n\n\n\n<p>And so basically what we do today is we take products, we onboard them, we evaluate, review things, give them guidance, give them a roadmap. And then we help those products get distribution deals with hosting providers. And we’re basically the ones facilitating that.</p>\n\n\n\n<p>And so the idea, and I’m curious to see where it evolves, is to say okay let’s solve those three problems now and do so in a way that lets us build momentum and scale over time. And I think there’s a lot of things yet to be worked out and much of that’s going to come through who we work with, right?</p>\n\n\n\n<p>So right now it’s a small group of products, but I’m rapidly expanding that. And with each new product that comes in, where they’re bringing new ideas, new questions. The heart of this has been how do we create something that naturally builds on itself as we have success with what’s in front of us?</p>\n\n\n\n<p>[00:28:34] <strong>Nathan Wrigley:</strong> The model that you’ve just described is you’re building this, as a company comes in you’ll onboard them and give them the benefits that you can provide at the moment. Presumably the idea is that over time more and more of these will come on.</p>\n\n\n\n<p>And then you will have some kind of quorum of companies, enough to make this guild have enough clout out there so that you’re widely recognized. The name is out there. Everybody knows there’s benefits in this. But you’re in that kind of onboarding phase.</p>\n\n\n\n<p>Now it strikes me that if I were to join a guild, maybe there’s a piece of me coming to you that would have some sort of exclusionary principle in the back of my mind. In other words, okay I am, I don’t know, let’s say I’m an SEO plugin or something like that. And I’m thinking to myself, I’m seeing Guildenberg all over the place. This looks like something I could be a part of. But I want to be the SEO person. How do we work around that?</p>\n\n\n\n<p>Because I think in the traditional guild structure that was part of the deal, right? You got to be part of the guild and then you were the person in and we closed the door a little bit behind you because you’re living in that geographical area or whatever it may be.</p>\n\n\n\n<p>So the way to describe that here would be, okay you’re the SEO plugin. You’re the form plugin. You’re the speed optimization plugin. From the article that I’ve read you don’t want to do that. You want to welcome as many people in as you can, but from a product point of view, I guess I’d be thinking well I don’t really want to be in a guild with all my competitors.</p>\n\n\n\n<p>[00:30:03] <strong>Jonathan Wold:</strong> That’s a great question. And I think this is a good example where like the guild framing is, I think, the right framing for how we facilitate cooperation and collaboration amongst peers and that includes competitors.</p>\n\n\n\n<p>The piece of it though that puts it all in perspective is the app store direction, right? Like an app store that only has one SEO plugin for instance, I would argue and I think most people would agree, is not the best for the end users, right? And this is certainly the case for the hosting providers as well. They’re looking for options.</p>\n\n\n\n<p>So for us to do our jobs effectively, it’s not for us to like decide who’s the best one in this space. It’s to level the playing field to the benefit of the end users and for the host. Like okay let’s have security standards now, performance standards. Let’s have standardized design kits that can be used, right? Let’s abstract out the baseline stuff and let the product creators innovate on top of that and let the market determine. Let the end users determine which ones are the best through that feedback loop.</p>\n\n\n\n<p>So I think there’s people who certainly won’t like it. Oh there’s a competitor in here as well. But if you just take it through the app store framing, I certainly don’t want to be part of an app store or have one that only has one app for a particular category. It’s like I want choices.</p>\n\n\n\n<p>[00:31:23] <strong>Nathan Wrigley:</strong> Yeah it’s interesting because it’s just the language of guild I think is what promoted that question because it kind of feels like that maybe was the value of a guild back in the day.</p>\n\n\n\n<p>[00:31:31] <strong>Jonathan Wold:</strong> And certain types of guilds, right? One of the common examples was of a trade craft. Everyone in the guild was a certain type of trades person and they’re all competitors. So to your point yes, sometimes there was geographic differences but there’s also plenty of these be in the same city. But they were aligning their interests against sometimes other guilds. As long as you’re clear on what you’re after there’s not a problem with people competing.</p>\n\n\n\n<p>It’s going to be a challenge I’m certain of that. And part of why it’s so important to get the incentives right is much of that can sort itself out when you’re clear on what you’re here to do. And for me I’d always bring it back to hey we’re here to create a better ecosystem for end users. We all benefit from that.</p>\n\n\n\n<p>And so for instance one of the dilemmas ends up being, someone creates a great WordPress plugin. How do they handle it becoming part of Core? Or if some piece of it’s sort of taken out. And those are examples of things that we have to come to terms with.</p>\n\n\n\n<p>I’m sure that there are people who are upset when Apple baked a flashlight into iOS. The flashlight apps kind of died overnight, right? But from an overall good of the ecosystem perspective, I think the majority of folks would agree that that was useful and that was best to have just built directly in.</p>\n\n\n\n<p>So there are things like that that you have to deal with. And my hope is that the construct of a guild on the people side of things gives us a place to do those things fairly and openly, rather than just like arbitrary and behind the scenes. There will be challenges. I think if we stay fixed on where the incentives are and aligning them, it’s going to be at least easier to navigate the challenges.</p>\n\n\n\n<p>[00:33:04] <strong>Nathan Wrigley:</strong> Yeah. You mentioned earlier that the kind of app store, for want of a better word, was the North Star. Now you’re not there yet. Presumably the distribution piece, which is what you said you’re concentrating on at the moment, that’s the low hanging fruit, because if people come to you you’re very well connected, you have that within your grasp. You can connect people. You know people in the ecosystem.</p>\n\n\n\n<p>The other bits and pieces will come over time. But now this raises the always difficult question of finance. Because something like this will not be easy. And if it’s going to stretch just beyond the bounds of you and your co founder then presumably real work needs to be done, real time needs to be spent. And although that could be done with volunteers, really what would be the difference with what we’ve got now?</p>\n\n\n\n<p>So let’s talk about that. Let’s talk about how you’re thinking of structuring this financially. I’m guessing at the moment people that come to you are paying you a fee. Maybe not. But in the future do you want to move this to more of a, I don’t know, subscription model, a percentage of revenue model? Something like that.</p>\n\n\n\n<p>[00:34:10] <strong>Jonathan Wold:</strong> So great question. That’s a lot of what we focus on figuring out. So I have two co founders, Anna Maria Radu and Matt Fields. And so the three of us together, sort of the core base. We started this a year and a half ago but we’re slowly but surely also expanding the team.</p>\n\n\n\n<p>So the way that we make money, we have the Gildenberg Partnership Program, that’s the one that focuses on distribution. For a product that wants to get distribution they come in and they pay an onboarding fee. That will vary. It generally starts at like 10,000 up to 30,000, but it’s dependent on sort of what’s involved.</p>\n\n\n\n<p>And that covers our work on especially the first two things. So we look at the monetisation, we look at compatibility, we create a roadmap for that product. Like, all right, these are the things that you need to do to get ready for distribution. We look at the foundation for partnerships.</p>\n\n\n\n<p>So there’s just time upfront there that’s involved. My hope is to see that reduce as time goes on, right? Become more standardized, more just open source as we create playbooks. That’s a starting point but the real heart of the business is a rev share model. So what we do is when we bring in a product and we do distribution deals with them, our standard approach is 25% of the deals in the first year. And then it goes down to 15% on average thereafter.</p>\n\n\n\n<p>So if we take in a new product and we help them sign a million dollar deal then $250,000 of that revenue goes to Guildenberg. And so we’re not taking from their existing. We’re not tapping into that business. It’s all on what we add which is the heart of what brings folks to us to begin with.</p>\n\n\n\n<p>What’s great about that is that we’re able to be really upfront with the hosts. When we go to a host and bring them in as distribution partners we’re not taking anything from them. We’re aligned on the interests of the products. And when the product is winning that’s when we get paid.</p>\n\n\n\n<p>[00:35:59] <strong>Nathan Wrigley:</strong> So just to be clear on that, in the scenario of a million dollars, so you connect company A with hosting company B. And the deal there was a million dollars. I think you mentioned $250,000 would go where?</p>\n\n\n\n<p>[00:36:13] <strong>Jonathan Wold:</strong> So that’s actually a good question. That somewhat depends. And this is a good example of what we’re working out. So in some situations we might be splitting that with the host who did the deal. And others the host would be on top of that. That somewhat depends on the product type and the category.</p>\n\n\n\n<p>That’s a lot of what work we’re doing now is figuring out what’s fair, what makes sense. The guidance is we want to win for all involved, right? But the heart of it is, it’s like two things. One we’re incentivising ourselves. We make our money on the successful distribution side, right? So the revenue share is the heart of Guildenberg’s economic engine.</p>\n\n\n\n<p>And two, we’re directionally going towards that app store. You can imagine the future state where it’s a straight 15%, right? And that covers the app store costs. And there’s a split there with the hosting providers who also offer it. So it’s like I’ll be flexible along the way to get there and do what makes sense, but I’m very clear on where we’re going. Which is going to be this sort of standardized target of 15% across products.</p>\n\n\n\n<p>[00:37:18] <strong>Nathan Wrigley:</strong> Okay so in the Apple ecosystem which we had a moment ago, we were talking about that, there was some parallels there. The entire model of the Apple ecosystem really is profit, and dividends to shareholders. That’s the mantra. So I guess that question has to come next. Is there some alignment there? Is this the model that you’re going to be promoting?</p>\n\n\n\n<p>In other words, if you grow do the coffers of Gildenberg grow? Or is there some reasonable, I don’t know, churn of those finances giving back to the community, giving back to the WordPress project? How does all of that work? In other words is Guildenberg a for profit? Is it a for profit with benefits to the WordPress community? Is it just a not for profit? What’s going on?</p>\n\n\n\n<p>[00:38:02] <strong>Jonathan Wold:</strong> That’s a great question. This is another good example of something that I’m still working out. So let me start with my intentions. One of my motivating pieces behind this, if I could just wave a wand based on how I see things today, acknowledging that they could change and there’s pieces that I’m sure I’m missing. My ideal would be to get to where a product is paying 15% for distribution. And 5%, so 33 of that 15, of that revenue is going directly to the project.</p>\n\n\n\n<p>In my current thinking we have two organizations if you will. Guildenberg Inc. which is for profit and does the distribution work, and returns dividends to its shareholders. Which can include members, it includes investors, etc. I want to be moving increasingly towards being community owned.</p>\n\n\n\n<p>And then you have the .org, if you will, which is basically the member pool. So in my ideal an increasing amount of revenue goes into that pool to then be managed and directed by the members, right?</p>\n\n\n\n<p>As one example, let’s say someone joins the app store in the future. They’re paying the 15%, they don’t really care about the project at all. So 5% or 33 of that 15 goes into the member pool on their behalf. And they really have no say over what it. So it’s directed by the members into projects, into initiatives and .org that matter to them.</p>\n\n\n\n<p>Now, if that member, that product, decides that they do care they can then join the guild and now they have a say over where their funds go. They might say oh I care more about this initiative over here. So that’s the high level idea. Part of what set me out, what I set out to do here is like, how do we solve an incentives problem across the space?</p>\n\n\n\n<p>I don’t want people to do Five For The Future just because they love WordPress. I want there to be an economic incentive behind it. And to me, what I’m intrigued by, what I’m working towards is, how do you just build that into this App Store model?</p>\n\n\n\n<p>So that’s the direction. I don’t know how we get there. I suspect that you have the for profit piece and then a separate organization for the member pool. I don’t know and people have ideas, I want to hear them. I’ve had a number of inputs already. We don’t have to solve that problem today. We’re working on just getting the economic engine up and running, but that’s the stuff that I find especially motivating.</p>\n\n\n\n<p>And that’s been a big piece of this. How do we create incentives that provide funding that the project needs to work on the things that might not get the attention otherwise?</p>\n\n\n\n<p>[00:40:29] <strong>Nathan Wrigley:</strong> You said something a moment ago which, I’ve got to say, I’m not entirely sure I understood it. Because you implied that you could opt out say of the Five For The Future piece if you weren’t a part of the guild, or if you hadn’t joined the guild. But the implication would have been that you were still part of the App Store, let’s call it that. So have I misunderstood? Can you be somebody who can have a plugin on the Guildenberg marketplace but not be a part of the guild?</p>\n\n\n\n<p>[00:40:56] <strong>Jonathan Wold:</strong> Yes. The idea is, so at least in my current thinking, what would happen is that if you just join the app store, it’s like a level one, there’s requirements and standards to do that. But you don’t have to be active in the community and be participating and kind of doing all this stuff.</p>\n\n\n\n<p>You can join for just the pure business incentives. As long as you play by the rules you’re in, right? Because it’s merit based, it’s based on your behavior. As long as you’re playing by the rules, you’re in. And my thinking, so at that level, you don’t care where your 15% goes to.</p>\n\n\n\n<p>We’re going to spend it on your behalf on the project, we’ll direct the funds. And the idea is that a year later you’re like hey this WordPress community is quite cool. You discover that the guild is something that you can join and you apply to do so, the members accept you. Then at that point, that 5% of the 15, the funds that have been allocated on your behalf automatically, you could now have a say over where they go. That’s the idea. Does that make sense?</p>\n\n\n\n<p>[00:41:56] <strong>Nathan Wrigley:</strong> That’s cleared that up. Yeah thank you. That makes sense. Now you said the word behavior there, which is kind of interesting. Let’s extrapolate that because if we run that forwards, you can imagine a nightmare scenario where there is just this cabal of people who have control over the behavior.</p>\n\n\n\n<p>What the behavior is that’s appropriate to be in and out of this community. And you can imagine a scenario in, let’s say that in 10 years from now Guildenberg is monstrously successful. Almost everybody’s going there to inquire about premium plugins and what have you. And yet we have gatekeepers of behavior and all of that.</p>\n\n\n\n<p>So I want to address that. Almost every part of human history shows that given power things start to go a little bit pear shaped. And maybe the incentives that were there at the beginning of the project are not the incentives that approach when money is involved, or you’re becoming successful, or you sense that somebody else has an idea which conflicts with you.</p>\n\n\n\n<p>So let’s just get into that. Who moderates the behavior? Who creates that charter? And how do we ensure that this cabal doesn’t occur?</p>\n\n\n\n<p>[00:43:07] <strong>Jonathan Wold:</strong> Okay so there are two threads here that we have to look at. First, why behavior, and then second, how do you do the governance piece? It’s basically what we’re touching on, right?</p>\n\n\n\n<p>Oh I love this stuff. So first one of the challenges when I was looking at the history of guilds is that because of human nature I’d argue, we tend towards exclusivity. We want to work with people like us, that look like us, talk like us, whatever the reasons are, right?</p>\n\n\n\n<p>And so this is just like how we tend. So while there were a lot of good things that guilds did, they were also highly exclusionary at times, right? Where it just sort of propagated and just made even more prevalent some of the challenges that we recognize today of inclusivity and diversity, right?</p>\n\n\n\n<p>So I feel like we can’t trust ourselves because we’re going to tend by default to just attract people that are like us. Which I’d argue is not good for the ecosystem as a whole. So in sorting through that for a while, it’s like well okay then what can you use? What becomes the basis?</p>\n\n\n\n<p>And the only thing that stands out to me as fair is behavior. So it doesn’t matter where you’re from, what you look like etc. If you abide by the same rules. And so let’s start with this. It feels to me like the right idea in principle. The question becomes, how do you practice it?</p>\n\n\n\n<p>[00:44:24] <strong>Nathan Wrigley:</strong> The devil is in the detail here, isn’t it.</p>\n\n\n\n<p>[00:44:26] <strong>Jonathan Wold:</strong> But you got to get that right first, right? So it’s like okay we can say behavior. Now there’s a couple of things we have to work with. We have our core values in WordPress. Andrea Middleton did a fantastic talk on this a couple of years ago. And there are a few things that stand out. Someone didn’t make a list somewhere these are just what we practice. And she did the work sorting through them.</p>\n\n\n\n<p>We have this concept of autonomy. We value in WordPress doing what we want and we respect the freedom of others to do the same right?</p>\n\n\n\n<p>We also have this concept of like a duocracy, like you get credit for doing. We care about utility, making stuff that works, that solves problems. We’re generally skeptical as a community. This conversation is a great example of it, right? We ask why, and we keep asking. And then quite importantly, we do a good job at our core of giving credit where credit’s due, right?</p>\n\n\n\n<p>And so there’s a lot here Nathan to be figured out but I’ll just kind of give you one example. One of the behaviors that I would expect members to adhere to is, let’s take that last one, giving credit where credit is due. This is GPL, right? So on the one hand, you’re free to take someone else’s work, change the name on it and resell it as your own. You’re legally free to do that. And I respect your choice and freedom to do that anytime that you want to.</p>\n\n\n\n<p>But in terms of who I want to work with, I wouldn’t want to work with someone who doesn’t give the credit to the person who originally did that. They’re legally not obligated to do so, right?</p>\n\n\n\n<p>You can just kind of do whatever you want, it’s GPL. But when I think about the behavior that I would want to build around it’s like hey yeah I copied someone else’s work and I gave them credit for doing so and built on that.</p>\n\n\n\n<p>That’s one example of a behavior where I would want people in who are happy to give the credit where it’s due to those that they worked with. And if you made a mistake, oh wow yeah I forgot to give attribution there. No problem. Let’s fix that. And they prioritize that because that’s one of the things that we value.</p>\n\n\n\n<p>[00:46:29] <strong>Nathan Wrigley:</strong> I guess the other piece there would be the cabal piece as I mentioned, you know, just idea that you would have people who had been there from the very beginning. You can see how this works. It all boils down really to the word governance I think.</p>\n\n\n\n<p>Who’s governing and what gives them the right to stay in that position? And who ultimately would be the person to say well you’re right at the top of this pyramid here? But your behavior isn’t living up to the code therefore you’re going to have to think about either modifying your behavior or going elsewhere. That’s a difficult thing to do because they’re the people that are governing, if you like, and yet you’re wanting them to adapt their behavior.</p>\n\n\n\n<p>[00:47:06] <strong>Jonathan Wold:</strong> Okay so let’s talk about that. So again, that’s another one, lots to figure out there. But my guiding point, my starting point here, Leslie Sims pointed me to Elinor Ostrom’s book, Governing The Commons: The Evolution of Institutions for Collective Action. It’s a fascinating book. I highly recommend it.</p>\n\n\n\n<p>And it goes back and looks at the history of commons. And contrary to what people think there are groups who’ve successfully self governed for as long as a thousand years over scarce fixed resources. And what Ostrom does in her work here is she looks at all the data and breaks it down. Figures out what’s working, what doesn’t. And she came up with eight design principles for what she calls a common pool resource.</p>\n\n\n\n<p>So I’ve still yet to figure this out. But in my mind part of the key here is you have the commercial interest like the Guildenberg .com, right, if you will? And then you have this member pool which is like that Five For The Future type resource.</p>\n\n\n\n<p>And the key there is that over time we want that to become the biggest thing, right? If the .com interests are successful we’re slowly but surely making the guild more and more powerful, if you will, by it having more and more resources. Every new product that comes in, that is growing.</p>\n\n\n\n<p>So then it comes down to okay how do we then govern that growing pool of resources? And this is where Ostrom’s work comes in. She has eight principles for self governance in a commons scenario. And there are a couple of different pieces to it.</p>\n\n\n\n<p>The first one is this idea of having clear boundaries. So there’s a very clear definition of what it means to be a member. This is where the behavior standards come in. You need to make sure that those make sense for the ecosystem that you’re in. They need to hold up to scrutiny. You need to make sure that the members themselves can modify the rules. That’s the key piece here, right?</p>\n\n\n\n<p>And there’s a number of things that you have to think through. It’s not, it’s tricky, and a lot of it is this idea of you’ve creating an environment where there’s intended to be a healthy tension. And that’s part of how you prevent capture, right? So it’s not trivial.</p>\n\n\n\n<p>But we have plenty of examples of how people have done this in the past. And the heart of my interest and what I’m moving towards is like okay let’s take what’s already been established here, let’s combine some of these ideas. The construct of a guild but then adding in the concept of a member, a resource pool, that is governed by the members. Which is something that guilds often didn’t do. It tended to be kind of arbitrary but they had some of these pieces.</p>\n\n\n\n<p>So yeah there’s a lot of work to be done there. I feel directionally clear and the focus right now is on the economic engine. But as time goes on what I’m excited about is drawing in people who have a lot more experience than I do to take some of these ideas and break them down.</p>\n\n\n\n<p>I know that we’ll make mistakes and my intention is that by staying focused on aligning incentives we’re giving ourselves a reason to learn from those mistakes and make it better. Yeah I at least feel confident in the direction where it’s all going.</p>\n\n\n\n<p>[00:50:12] <strong>Nathan Wrigley:</strong> Yeah. So you’re working on the distribution piece at the moment. It in a sense is the underpinnings of the monetisation and the compatibility pieces. They’re going to grow hopefully out of all of the distribution model that you’re working on.</p>\n\n\n\n<p>Okay so you’re a year and a half in. This is the final question I’ve got for you. Do you have cause to be optimistic? Having had 18 months of playing around with this and obviously bringing some people on board. Do you have optimism? Does this still seem like it’s a long way off? Or do you feel that there’s legs to this? And two years from now we might be having a more in depth conversation about something that’s moved forward.</p>\n\n\n\n<p>[00:50:47] <strong>Jonathan Wold:</strong> So I’m optimistic by nature. What’s been interesting to me about this is that I’ve tried somewhat hard over the years to kind of convince myself out of doing this. And Nathan after a year and a half of effectively full time on this, if I knew how hard it was going to be I probably would have tried harder to convince myself to not do it.</p>\n\n\n\n<p>So hey I’m optimistic as a visionary. And I’ve been cautious about this. But the main reason that we are where we are and we have had significant traction is that at every turn I’ve either had yeses or affirmation of direction, or we’ve identified an obstacle that has offered an opportunity to clarify which has then led to a yes.</p>\n\n\n\n<p>So my core focus has been talking with product companies and with hosting companies. And in those conversations I’ve just continued to get clearer and clearer on the problem sets and where the incentives are and what’s motivating. And I’ve either had explicit like, yes we want to be a part of this or, yes if you solve that of course we want to, like, let’s talk again.</p>\n\n\n\n<p>And so it’s been a curious tension for me where it’s really hard because you’re tackling a lot of pieces at once. There’s a lot of moving parts. But it’s also easy in the sense that what we’re really just trying to do is create incentives to solve these problems that people recognize exist.</p>\n\n\n\n<p>I’m happy with the progress. A lot of it’s been around like for me, one of my marks or my indicators is what am I hearing when I go to a WordCamp, right? I was starting some of these conversations about a year ago at WordCamp Europe. And if I look at what was happening then which was encouraging and optimistic, encouraged my optimism then versus now, it’s all just dialed up.</p>\n\n\n\n<p>And now I’m having conversations with investors about giving us more capital to grow more quickly. And those are also going well. So we’ll see. We’ll see what happens but I’m encouraged. And this is one where as much as I believe in it, I’ve tried pretty hard to convince myself to like go do something easier.</p>\n\n\n\n<p>And it just kept coming back. And my co founders are also encouraged that they don’t share my optimism. And so when I talked to Anna or Matt about this and they’re really like okay this is good. We’re seeing pieces of the puzzle sort of come together and they’re encouraged. I’m like okay well, then that’s another indicator that we’re going the right direction.</p>\n\n\n\n<p>And what’s going to really matter though, what it all boils down to, is are we able to successfully help these products get distribution? And can we do that at scale? I’ve done it for individual products. We’re seeing good early signs, it does take time. And that’s going to be the proof, right? Can we have a meaningful impact on these products?</p>\n\n\n\n<p>And that’s what all of our focus is on right now. I’m encouraged with what I’m seeing. And I think what you’ll see over the next year or two is that becoming a lot more public. And what I want to see happen out of this is to take the things that work and open source them. Make it available for folks. There’s no benefit because we have this clear overall guidance to grow and improve the ecosystem. We’re not trying to keep it to ourselves.</p>\n\n\n\n<p>[00:53:55] <strong>Nathan Wrigley:</strong> It certainly will be worth listening back to this in a year’s time and see where you are. Obviously from my point of view, I hope it goes well. Fingers crossed that it’s going to all pan out for you. If somebody has listened to this and I would imagine probably they are a product maker will be most interested to get in touch with you because they’ve got things that they want to discuss with you. What are the best places for us to find you?</p>\n\n\n\n<p>[00:54:16] <strong>Jonathan Wold:</strong> Just reach out to me through the Guildenberg website, guildenberg.com, jonathan@guildenberg.com. Or find me at a WordCamp. I’ll be at WordCamp US. Looking forward to WordCamp Asia next year, WordCamp Europe, and I’m going to start going out to some of the regional ones as well.</p>\n\n\n\n<p>[00:54:31] <strong>Nathan Wrigley:</strong> Jonathan Wold, thank you for chatting to me today on the podcast.</p>\n\n\n\n<p>[00:54:34] <strong>Jonathan Wold:</strong> Thanks for having me, Nathan.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://jonathanwold.com/\">Jonathan Wold</a>.</p>\n\n\n\n<p>Jonathan has been deeply involved in the WordPress community for almost two decades. He began writing tutorials and freelancing, which eventually led him to the agency world where he worked on large enterprise projects. In the past five to six years, Jonathan has shifted his focus to the broader WordPress ecosystem. He’s also had the opportunity to work at WooCommerce and collaborate with the team at Automattic. Despite the demands of his busy career, Jonathan’s passion for WordPress has only grown stronger over the years.</p>\n\n\n\n<p>Jonathan is one of the co-founders of <a href=\"https://guildenberg.com/\">Guildenberg</a>, and in the podcast today we discuss what this project is, and how it aims to revolutionise the WordPress product ecosystem.</p>\n\n\n\n<p>We start the conversation by highlighting the importance of behaviour in the WordPress community and the core values that drive the platform; autonomy, meritocracy, utility, and giving credit where credit is due. Jonathan emphasises the significance of giving credit to the original creators of work, even though it may not be legally required.</p>\n\n\n\n<p>We move on to talk about how Guildenberg aims to solve some of the key problems faced by WordPress product owners, such as monetisation, compatibility, and distribution. Jonathan envisions a system where product owners pay a fee for distribution of their products, with a portion of that revenue going back to the Gildenberg project. By aligning incentives and providing economic motivations for contributors, Guildenberg seeks to create a sustainable and thriving ecosystem for the open web.</p>\n\n\n\n<p>We get into the inspiration behind the name Guildenberg, which combines the ideas of Gutenberg and the guild institutions from mediaeval Europe. We also discuss the team’s long-term vision of creating an app store for WordPress that spans the majority of installations, offering monetisation options and enforcing compatibility standards.</p>\n\n\n\n<p>If you’re a WordPress developer who is keen to find a way to create visibility for your product, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://guildenberg.com/\">Guildenberg website</a></p>\n\n\n\n<p><a href=\"https://jonathanwold.com/a-guild-for-wordpress-product-businesses/\">Jonathan’s article – A Guild for WordPress Product Businesses</a></p>\n\n\n\n<p><a href=\"https://archive.org/details/ElinorOstromGoverningTheCommons\">Elinor Ostrom’s book, Governing The Commons: The Evolution of Institutions for Collective Action</a></p>\n\n\n\n<p><a href=\"https://wordpress.tv/2019/10/31/andrea-middleton-will-what-got-us-here-get-us-there-wordpress-community-at-scale/\">Andrea Middleton: Will What Got Us Here, Get Us There? WordPress Community at Scale</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, 16 Aug 2023 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: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:164:\"Post Status: Translations Across the Project • Admin Design • New Blocks Page • Working Group on Organizations Supporting WordPress • Contributor Mentorship\";s:7:\"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://poststatus.com/?p=150145\";s:7:\"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:159:\"https://poststatus.com/translations-across-the-project-admin-design-new-blocks-page-working-group-on-organizations-supporting-wordpress-contributor-mentorship/\";s: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:19788:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">With just a few days before Community Summit, Contributor Day, and WordCamp US, many initiatives across the project are gearing up for time well-spent together. Docs, Training, and several other teams are joining together to work on translations and localizations in a way that supports Gutenberg Phase 4 Multilingual.The Design team is working on the… </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box150145_a5ac79-bb\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fas_globe-asia kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Translations, Dashboard Redesign, Blocks page, Supporting Orgs, Mentorship</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4ac.png\" alt=\"💬\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a8.png\" alt=\"🎨\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f195.png\" alt=\"🆕\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f44d-1f3ff.png\" alt=\"👍🏿\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d1-1f3fc-200d-1f3eb.png\" alt=\"🧑🏼🏫\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">The Inaugural Cohort of the WordPress Contributor Mentorship Program has Concluded</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-150145_9cb3a4-58\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-150145_050cc2-2e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/\">Contribution Stats for WordPress 6.3 « Lionel »</a></blockquote>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/16/contributor-working-group-mentorship-chat-agenda-august-17th-0700-utc-apac-emea-and-1600-utc-amer/\">Contributor Working Group: Mentorship Chat Agenda | August 17th 07:00 UTC (APAC/EMEA) and 16:00 UTC (AMER)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/14/wcus-2023-community-team-event-at-contributor-day/\">WCUS 2023: Community Team event at Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/09/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-august-9-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on August 9, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/16/a-week-in-core-august-14-2023/\">Two Weeks in Core – August 14, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/status-update-on-the-interactivity-api/\">Status update on the Interactivity API</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" target=\"_blank\" rel=\"noreferrer noopener\">Admin Design</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/whats-new-for-developers-august-2023/\">What’s new for developers? (August 2023)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/dev-chat-agenda-august-16-2023/\">Dev Chat agenda, August 16, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/14/editor-chat-agenda-16-august-2023/\">Editor Chat Agenda: 16 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/08/14/design-share-jul-31-aug-11/\">Design Share: Jul 31-Aug 11</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/15/agenda-for-docs-team-bi-weekly-meeting-august-15-2023/\">Agenda for Docs Team bi-weekly meeting August 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/documentation-team-update-august-14-2023/\">Documentation Team Update – August 14, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/08/16/hosting-team-meeting-agenda-8-16-2023/\">Hosting Team Meeting Agenda 8-16-2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/07/10/notes-global-marketing-team-meeting-4-july-2023/\">Notes: Global Marketing Team meeting, 4 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/marketing-team-update-the-first-half-of-2023/\">Marketing Team Update: The first half of 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/performance-chat-summary-15-august-2023/\">Performance Chat Summary: 15 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/plugin-review-team-14-august-2023/\">Plugin Review Team: 14 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/16/agenda-weekly-polyglots-chat-august-16-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 16, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">The Inaugural Cohort of the WordPress Contributor Mentorship Program has Concluded</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-reps-call-for-nominations-3/\">Test Team Reps: Call for Nominations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-at-wcus-2023/\">Test Team at WCUS 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/test-team-update-14-august-2023/\">Test Team Update: 14 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">Blue Note: The second community theme is released</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/15/themes-team-update-august-15-2023/\">Themes team update August 15, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person & Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/14/training-team-meeting-recap-8th-august-2023/\">Training Team Meeting Recap – 8th August 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/embedding-media-and-third-party-content-on-your-website/\">Embedding media and third-party content on your website</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/testing-your-plugins-for-php-version-compatibility/\">Testing your plugins for PHP version compatibility</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=https-www-meetup-com-learn-wordpress-online-workshops-events-295453051\">The Wide World of WordPress Events</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-learn-wordpress-platform-part-1\">Contributing to the Learn WordPress platform – part 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=whats-new-for-developers-august-2023\">What’s new for developers? (August 2023)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-12\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-hour\">Training Team Contributor Hour</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=website-auditing-and-conversion-optimization\">Website auditing and conversion optimization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-database-optimization-and-maintenance\">WordPress database optimization and maintenance</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-a-contact-page\">Creating a contact page</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 16 Aug 2023 13:25:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";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:55:\"WPTavern: WordPress.org Adds New Page to Explain Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147861\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/wordpress-org-adds-new-page-to-explain-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4226:\"<p>What are blocks? WordPress has added a new resource to its website at <a href=\"https://wordpress.org/blocks/\">wordpress.org/blocks</a> that attempts to explain blocks visually with simple language. The landing page is aimed at those who are new to the block paradigm or those who may not yet fully understand blocks’ ease of use and powerful features.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2224\" height=\"1200\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-15-at-9.25.01-PM.png\" alt=\"\" class=\"wp-image-147867\" />\n\n\n\n<p>Automattic-sponsored core contributor Anne McCarthy <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">announced</a> the new page on WordPress.org with a request for feedback, as this is the first iteration. The project was born out of <a href=\"https://github.com/WordPress/wporg-main-2022/issues/245\">ticket</a> on GitHub which outlines the need for more effective block marketing:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Currently, there isn’t a page on wordpress.org that explains in a compelling way what ‘Blocks’ are or markets it very effectively on the website. We have a <a href=\"https://wordpress.org/plugins/browse/blocks/\">filter</a> in the plugin directory, which is useful, but that page is lacking the context of what blocks are, what the block editor is, and why it is so exciting. There are other pages, such as the <a href=\"https://wordpress.org/documentation/article/wordpress-block-editor/\">documentation</a>, that explains what the block editor is, but IMO it’s a bit wordy and explains how to use the editor, but not necessarily <em>why</em> you should use the editor and why it is unique and exciting.</p>\n<cite>WordPress.org GitHub Repository issue: <a href=\"https://github.com/WordPress/wporg-main-2022/issues/245\">Create ‘Blocks’ Landing Page #245</a> – created by Ben Greeley</cite></blockquote>\n\n\n\n<p>One important consideration for contributors working on this project is the overlap with <a href=\"http://wordpress.org/gutenberg\">wordpress.org/gutenberg</a>. The Blocks page is more of a static brochure style introduction, whereas the Gutenberg page is a fully interactive demo that offers an overview of how the editor works. Although they are similar resources, they both have distinct purposes. </p>\n\n\n\n<p>McCarthy created a <a href=\"https://github.com/WordPress/wporg-main-2022/issues/318\">tracking issue</a> for the first iteration of this page, which functions as a mini roadmap for future improvements based on feedback she has already received. More accessibility improvements are coming in future versions, along with some sort of visual that will concisely demonstrate the connection between blocks, patterns, and themes. Contributors are also considering integrating WP Sandbox to make it possible to see blocks in action.</p>\n\n\n\n<p>“This is intended to be a starting point and not a final destination,” McCarthy said. “Your feedback is welcomed and needed to get to the next iteration.” </p>\n\n\n\n<p>The blocks page is one area of contribution where even people who are brand new to blocks could help to make the content more compelling and less confusing by leaving feedback on the <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">post</a>.</p>\n\n\n\n<p>Blocks are something many casual WordPress users may still be trying to wrap their heads around, not to mention how they impact the ecosystem of plugins and themes. The <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> plugin, which insulates users from the world of blocks, remains one of the most popular plugins with more than 5 million users. Its continued support is not guaranteed forever, especially as WordPress looks to <a href=\"https://wptavern.com/wordpress-kicks-off-admin-design-overhaul-with-discussion-on-initial-mockups\">revamp the admin design</a> to be more similar to the block editor. This landing page’s marketing for blocks offers a safe entry point for those who are curious about the block editor and want to explore more resources.</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, 16 Aug 2023 03:40:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Do The Woo Community: Diving Into the WordPress Community with Jorge Casals\";s:7:\"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=75981\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://dothewoo.io/diving-into-the-wordpress-community-with-jorge-casals/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:437:\"<p>From his earlier experiences to an active WordPress community member, Jorge shares his journey and building products for WooCommerce.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/diving-into-the-wordpress-community-with-jorge-casals/\">Diving Into the WordPress Community with Jorge Casals</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 15 Aug 2023 09: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: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: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:82:\"WPTavern: Crocoblock to Host WordPress Web Agency AI Summit, September 28-30, 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:30:\"https://wptavern.com/?p=147593\";s:7:\"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:91:\"https://wptavern.com/crocoblock-to-host-wordpress-web-agency-ai-summit-september-28-30-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:1510:\"<p><a href=\"https://crocoblock.com/\">Crocoblock</a>, a Ukraine-based company with <a href=\"https://profiles.wordpress.org/crocoblock/\">plugins on WordPress.org</a> as well as commercial products, is hosting a <a href=\"https://crocoblock.com/wordpress-web-agency-ai-summit/\">WordPress Web Agency AI Summit</a> event on September 28-30, 2023. The company has a community of more than <a href=\"https://www.facebook.com/groups/CrocoblockCommunity\">24K+ freelancers and web agencies on Facebook</a> and is moving to organize its first large virtual event that will be free for all attendees.</p>\n\n\n\n<p>The summit will cover practical use cases for AI in development, marketing, design, web agency management, and freelance services. It will include mixed formats, including case studies, workshops, and live panel discussions with Q&A.</p>\n\n\n\n<p>Over the course of three days, speakers will give presentations in English from 10am – 2pm EST. The schedule features 10 speakers with commercial experience and proven success at applying AI to build WordPress sites. They will cover topics like how to build a search engine for a website using AI, AI tools for daily tasks, AI and accessibility, AI translations, and more.</p>\n\n\n\n<p>If you are interested to learn more about AI’s impact on the WordPress ecosystem and how to apply it to agency work, add the event to your calendar and <a href=\"https://crocoblock.com/wordpress-web-agency-ai-summit/\">sign up for free</a> on the Crocoblock website.</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, 15 Aug 2023 02:14:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"WPTavern: WordPress Themes Team Releases Blue Note, A Community-Supported Theme for Bloggers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147784\";s:7:\"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:102:\"https://wptavern.com/wordpress-themes-team-releases-blue-note-a-community-supported-theme-for-bloggers\";s: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:2617:\"<p>WordPress’ Themes team launched its <a href=\"https://wptavern.com/wordpress-themes-team-proposes-community-themes-initiative\">Community Themes initiative</a> earlier this year with the goal of bringing together contributors to build block themes year round, the same way that default themes are built and officially supported. Their first theme release was <a href=\"https://wptavern.com/wordpress-themes-team-releases-stacks-a-community-theme-for-building-slide-decks\">Stacks</a>, a single-purpose theme for creating slide decks that can be used for a presentation.</p>\n\n\n\n<p>The team has now <a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">released</a> its second community theme called Blue Note, inspired by American jazz record label “<a href=\"https://www.bluenote.com/\">Blue Note Records</a>.” It’s more versatile than Stacks, as it can be used for writing/blogging, a personal website, portfolio, nonprofit, memorial, event, or other types of landing pages.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1144\" height=\"858\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/blue-note-screenshot.webp\" alt=\"\" class=\"wp-image-147821\" />\n\n\n\n<p>Although Blue Note does not package any style variations, it comes with 14 beautifully designed patterns inspired by jazz record covers. The patterns enable users to quickly add images with text or quotes with multiple designs for each. There are also patterns with striped images, an artful way to break up a single image, paired with text. Users can select from multiple headers and footers, among seven page templates and four template parts.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2852\" height=\"1290\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-14-at-1.25.50-PM.png\" alt=\"\" class=\"wp-image-147826\" />\n\n\n\n<p>Blue Note was designed by Automattic-sponsored contributor Beatriz Fialho, inspired by her work on the State of the Word slides in 2020. It was developed during the WCEU contributor day with the help of more than a dozen <a href=\"https://github.com/WordPress/community-themes/blob/trunk/blue-note/CREDITS.md\">contributors</a>. The <a href=\"https://github.com/WordPress/community-themes/\">Community Themes GitHub repository</a> has other themes they are working on which are in various stages of development. </p>\n\n\n\n<p>Check out <a href=\"https://wordpress.org/themes/blue-note/\">Blue Note</a> on WordPress.org and download it for free via the Themes browser inside the admin. </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, 14 Aug 2023 21:09:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Do The Woo Community: A DevChat on WooCommerce Support with Andrew Wikel\";s:7:\"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=70794\";s:7:\"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:53:\"https://dothewoo.io/a-devchat-on-woocommerce-support/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:408:\"<p>Andrew Wikel shares thoughts and insights working on WooCommerce support specifically for builders and developers of Woo shops. </p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-devchat-on-woocommerce-support/\">A DevChat on WooCommerce Support with Andrew Wikel</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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:\"Sun, 13 Aug 2023 14:45: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: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: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:57:\"Do The Woo Community: WooCommerce Developer Life Snippets\";s:7:\"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=71199\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://dothewoo.io/woocommerce-developer-life-snippets/\";s: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:389:\"<p>With every developer we have a conversation with, there is a story. Woo DevLife brings those short stories to the reader.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woocommerce-developer-life-snippets/\">WooCommerce Developer Life Snippets</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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:\"Sun, 13 Aug 2023 14:30: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: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: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:100:\"Do The Woo Community: Site Ownership, WooCommerce and Insights into the Open Web with Aaron Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71078\";s:7:\"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://dothewoo.io/site-ownership-woocommerce-and-insights-into-the-open-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:478:\"<p>Aaron Campbell has a passion for the Open Web, open source and WordPress with the goal that everyone should have access to all things on the web.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/site-ownership-woocommerce-and-insights-into-the-open-web/\">Site Ownership, WooCommerce and Insights into the Open Web with Aaron Campbell</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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:\"Sun, 13 Aug 2023 14:30: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: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:63:\"Do The Woo Community: A Conversation: WooCommerce Custom Tables\";s:7:\"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=70941\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://dothewoo.io/a-conversation-woocommerce-custom-tables/\";s: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:420:\"<p>We have an in-depth conversation on custom tables including a recent experience with them migrating from Joomla to WordPress and WooCommerce.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-conversation-woocommerce-custom-tables/\">A Conversation: WooCommerce Custom Tables</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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:\"Sun, 13 Aug 2023 14:30: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: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: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:106:\"Do The Woo Community: Accessibility, the Payoff for Your Clients WooCommerce Shop with Anne-Mieke Bovelett\";s:7:\"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=71265\";s:7:\"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://dothewoo.io/accessibility-the-payoff-for-your-clients-woocommerce-shop/\";s: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:471:\"<p>Atarim Web Agency Summit speaker Anne-Mieke Bovelett shares a valuable tip on accessibility and WooCommerce design and development.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/accessibility-the-payoff-for-your-clients-woocommerce-shop/\">Accessibility, the Payoff for Your Clients WooCommerce Shop with Anne-Mieke Bovelett</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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:\"Sun, 13 Aug 2023 14:00: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: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: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:71:\"Do The Woo Community: A WordPress and WooCommerce Presence at CloudFest\";s:7:\"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=71256\";s:7:\"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:70:\"https://dothewoo.io/a-wordpress-and-woocommerce-presence-at-cloudfest/\";s: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:410:\"<p>Co-hosts Robert and Jonathan both attended CloudFest 2022 and share some interesting perspectives and comparisons.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-wordpress-and-woocommerce-presence-at-cloudfest/\">A WordPress and WooCommerce Presence at CloudFest</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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:\"Sun, 13 Aug 2023 14:00: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: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: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:95:\"Do The Woo Community: Grow Your Developer Network, Career and Business with Marcus and Courtney\";s:7:\"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=71280\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://dothewoo.io/build-your-developer-network-career-and-business/\";s: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:455:\"<p>Whether you are looking to grow or change your WordPress or WooCommerce development career, here are some tips from Marcus and Courtney.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/build-your-developer-network-career-and-business/\">Grow Your Developer Network, Career and Business with Marcus and Courtney</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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:\"Sun, 13 Aug 2023 13:45: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: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: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:72:\"Do The Woo Community: Three WooCommerce Tips for Simplifying the Complex\";s:7:\"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=71270\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://dothewoo.io/three-woocommerce-tips-for-simplifying-the-complex/\";s: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:432:\"<p>Atarim Web Agency Summit speakers Maciek Palmowski, David Mainayar and Nev Harris share tips for WooCommerce agencies and freelancers.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/three-woocommerce-tips-for-simplifying-the-complex/\">Three WooCommerce Tips for Simplifying the Complex</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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:\"Sun, 13 Aug 2023 13:45: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: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: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:65:\"Do The Woo Community: Where Are All the WooCommerce Alternatives?\";s:7:\"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=71292\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://dothewoo.io/where-are-all-the-woocommerce-alternatives/\";s: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:404:\"<p>A single tweet inspired this commentary from me about why we are not seeing many, if any real competitors to WooCommerce.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/where-are-all-the-woocommerce-alternatives/\">Where Are All the WooCommerce Alternatives?</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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:\"Sun, 13 Aug 2023 09:30: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: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:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: WordPress Kicks Off Admin Design Overhaul with Discussion on Initial Mockups\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147726\";s:7:\"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:97:\"https://wptavern.com/wordpress-kicks-off-admin-design-overhaul-with-discussion-on-initial-mockups\";s: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:7793:\"<p> The monumental task of <a href=\"https://wptavern.com/wordpress-plans-ambitious-admin-ui-revamp-with-design-system-galvanizing-broad-support-from-the-developer-community\">overhauling WordPress’ aging admin design</a> is coming into focus, as contributors <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">kicked off explorations of some initial mockups</a> this week. Gutenberg’s Phase 3 is focused on Collaboration and this admin revamp is part of that road map.</p>\n\n\n\n<p>As a starting point, Automattic-sponsored product designer Saxon Fletcher published some images and videos with a design that appears to have grown out of the editor’s interface to make it a more natural part of the admin. As part of the impetus for this project, he called out plugin developers that have <a href=\"https://wptavern.com/yoast-seo-20-0-introduces-new-admin-interface\">introduced their own admin interfaces</a> in the interim while waiting for WordPress to prioritize this project:</p>\n\n\n\n<p>“The added risk here is that plugin authors are side stepping outdated UI by introducing their own which can further fragment the WordPress experience,” he said.</p>\n\n\n\n<p>Fletcher emphasized that these mockups are “broad strokes and the first of many iterations.” The structural concepts Fletcher introduced include three main areas:</p>\n\n\n\n<ul>\n<li>A Sidebar for navigation </li>\n\n\n\n<li>A Page area for the main content, management, and settings</li>\n\n\n\n<li>A Frame representing the front-end of the site, which can be in an edit or read-only state</li>\n</ul>\n\n\n\nFrame mockup – video source: <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a>\n\n\n\n<p>“The frame can be used for previewing any type of content, including your entire site, templates, patterns etc,” Fletcher said. “Plugins can decide as to whether they benefit from having the frame in view while a task is being worked on, or hidden away. If a plugin doesn’t make use of the main content area, the frame will be in its expanded state.”</p>\n\n\n\n<p>The admin bar may also be getting a makeover as part of this project, although Fletcher did not elaborate on how it might change. The admin bar doesn’t appear in any of the mockups.</p>\n\n\n\n<p>“With the introduction of the frame, which represents the front-end of your site, we have an opportunity to re-think what transitioning between the front and back of your site looks like,” he said.</p>\n\n\n\n<p>The initial mockups explore the idea of implementing a drill down navigation UI that can also be used to house basic content, but Fletcher acknowledged the challenges of navigating up/down the submenus more challenging. Design contributors are exploring workarounds for this, including introducing breadcrumbs or highlighting recently visited sections.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nDrill down menus mockup – video source: <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a>\n\n\n\n<p>This concept for drill down navigation has received the most critical feedback in the comments of the post, as developers are concerned it will make navigation too complicated.</p>\n\n\n\n<p>“Not a fan of hiding all the Admin Menus behind a maze of Breadcrumbs, also there are many complex UIs that will not convert well this idea for the menu system, the current benefit with our current menu system is that is very fast to change from one plugin to another or another area of WordPress with very few clicks,” designer Adam Pickering <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/#comment-26834\">commented</a>. “This proposal for the new admin menu makes that whole UX a lot more time consuming and frustrating for the user. Even if a proposal comes along where you put the previous menu item above the current position of where you are it won’t fix the issue as noted.”</p>\n\n\n\n<p>Others are also concerned that the drill-down menu requires too many clicks and maybe even a popup menu on hover/long touch on mobile that pops out more options. Developer Anthony Hortin <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/#comment-26840\">commented</a> on how similar it is to the Customizer’s navigation: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>As others have mentioned, this “drill down navigation pattern” would be incredibly frustrating to use, not only for new users, but experienced users as well. Not being able to see what options are under each menu forces the user to constantly click on each menu item, exit, click on the next menu item, exit, and so forth, until they find the screen they’re looking for. Even as someone who’s been using WordPress for 17+ years, I quite often have to hover over menus to remind myself where to find things.</p>\n\n\n\n<p>This is also seen in the Customizer, which has had this style of navigation for years. When working on a new client’s site, it’s frustrating as hell trying to find options within the Customizer if they have a theme that you’re not familiar with. I would hate to see the whole Dashboard go in the same direction.</p>\n</blockquote>\n\n\n\n<p>Participants in the discussion were also critical of the Frame concept for the admin, as most admin tasks don’t lend themselves to frontend previews.</p>\n\n\n\n<p>“I’m most skeptical of the ‘surfaces’ approach and moving to a ‘front end first’ approach to things,” developer Jon Brown said. “Aside from theme edits, almost nothing I do in wp-admin requires or would benefit from a front-end view. If I’m managing orders on a WC site, I certainly don’t need/want to see the front end. If I’m editing plugin settings, again no front end. I get it makes sense for authoring new content, but that’s about it.”</p>\n\n\n\n<p>As part of the Collaboration phase, Fletcher also proposed that the admin become more customizable for different use cases, so its navigation and system variables would make performing certain tasks more efficient for blogs, e-commerce, portfolios, and multisite, for example. He also hinted at the ability for the community to share their configurations.</p>\n\n\n\n<p>“We’d like to see WordPress become a fun platform to build multiuser products on top of, more so than it already is,” he said.</p>\n\n\n\n<p>WordPress developers will have a major transition ahead to make their extensions compatible with the new admin. Some individuals and teams are better positioned than others to make that step forward. Fletcher’s proposal recognizes that backwards compatibility will be an important consideration for not breaking settings pages for plugins that don’t get updated.</p>\n\n\n\n<p>“Perhaps the trickiest part of this whole initiative is rolling admin changes out in a way that is iterative, doesn’t break existing workflows and encourages gradual adoption,” Fletcher said. “The site editor has given us a space to experiment, including being able to browse your site’s pages in the latest 6.3 release, and that may extend to other core admin pages like site settings, but at some point we’ll need to ‘break out’ of the editor to prevent too much duplication. We also need to support plugin pages that may never update, and do it in a way that feels seamless.”</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">discussion</a> continues and the developer community is invited to weigh in on the initial concepts and structural elements proposed in the post.</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, 12 Aug 2023 01:41:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:69:\"WPTavern: WordPress Publishes 6.3 Release Video and Landing Page Demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147720\";s:7:\"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://wptavern.com/wordpress-publishes-6-3-release-video-and-landing-page-demo\";s: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:2733:\"<p><a href=\"https://wptavern.com/wordpress-6-3-lionel-introduces-command-palette-expands-pattern-management-and-design-tools\">WordPress 6.3</a> “Lionel” was released earlier this week with an overview video that offers a beautiful, dizzying demo of the many new features packed into this update. It’s a two-minute guided tour of WordPress’ greatly expanded customization features, streamlined Site Editor interface, pattern creation and management, and the new Command Palette in action. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>For the first time, the release marketing also includes a new <a href=\"https://wordpress.org/download/releases/6-3/\">web experience</a> that showcases the features in 6.3 through a visual tour. It is essentially a release landing page with a beautiful dark mode style design and includes video demos for each major new feature. This visual resource is especially helpful for users who may have a difficult time getting a handle on a release that is so packed with updates. It’s also a resource that lasts long after all the Twitter buzz and other marketing has died down.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1936\" height=\"1146\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-11-at-11.54.43-AM.png\" alt=\"\" class=\"wp-image-147730\" />\n\n\n\n<p>During the past few release cycles, WordPress contributors have stepped up the product demos to help make the world aware of all the new capabilities landing in these updates. WordPress 6.3 Editor Triage co-lead Anne McCarthy, who co-hosted the <a href=\"https://wptavern.com/wordpress-6-3-rc2-released-watch-the-live-product-demo\">6.3 live product demo</a> with fellow contributor Rich Tabor, gave <a href=\"https://nomad.blog/2023/08/08/how-to-run-the-official-product-demos-in-wordpress-release-cycles/\">a glimpse behind the scenes</a> at the immense amount of effort and attention to detail and design that goes into these official project demos. </p>\n\n\n\n<p>As WordPress is expanding these resources and improving its marketing, McCarthy extended an invitation to any contributors who are able to follow a release in depth, understand the overarching vision, connect the dots on all the details, and artfully present them to the public. This is a somewhat rare combination of skills but a contribution opportunity with a high level of impact. Anyone interested can <a href=\"https://nomad.blog/2023/08/08/how-to-run-the-official-product-demos-in-wordpress-release-cycles/\">get in touch with McCarthy</a>, who said she wants to enable others to take this on in the future “to ensure a diverse set of folks can step into the spotlight.”</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, 11 Aug 2023 16:46: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:72:\"Do The Woo Community: All Things WordCamp US with Julia, Aaron and Kevin\";s:7:\"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=75842\";s:7:\"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:47:\"https://dothewoo.io/wordcampus-2023-organizers/\";s: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>Join us as we chat with three of the lead organizers from the team of volunteers to learn about WordCamp US 2023 in National Harbor, Maryland</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordcampus-2023-organizers/\">All Things WordCamp US with Julia, Aaron and Kevin</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 11 Aug 2023 11:11: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: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:87:\"Do The Woo Community: New Event: Woo Agency Chat Live! with Ash Shaw and Mitch Callahan\";s:7:\"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=75867\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://dothewoo.io/event-woo-agency-chat-live-august-16-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:410:\"<p>Join Mitch Callahan from Saucal and Ash Shaw from LightSpeed on Woo Agency Chat Live, August 16, 10:00 UTC</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/event-woo-agency-chat-live-august-16-2023/\">New Event: Woo Agency Chat Live! with Ash Shaw and Mitch Callahan</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 11 Aug 2023 10:41:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:70:\"WPTavern: Gutenberg 16.4 Introduces Experimental Auto-Inserting Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147688\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/gutenberg-16-4-introduces-experimental-auto-inserting-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4028:\"<p><a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\">Gutenberg 16.4</a> has been released with a new auto-inserting blocks experimental feature. It allows developers to specify a location in which the block will be automatically inserted, such as before or after a template. The block can then be repositioned after insertion using the editor tools.</p>\n\n\n\n<p>“This applies both to the frontend and to the Site Editor (via the REST API), allowing for further user customization,” Automattic-sponsored engineer Sarah Norris said in the 16.4 release post. She posted a video demonstrating how it works with an example “like” block:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo source: <a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\">Gutenberg 16.4 release post</a>\n\n\n\n<p>Although the auto-inserting blocks is still behind the experimental flag, developers can try it by adding an <code>__experimentalAutoInsert</code> field to the block.json file of a dynamic block. Example code is available in the release post.</p>\n\n\n\n<p>“This feature aims to improve the extensibility of block themes through plugins and continues to be actively developed,” Norris said.</p>\n\n\n\n<p>The <a href=\"https://github.com/WordPress/gutenberg/issues/39439\">GitHub ticket for auto-inserting blocks</a> describes a common scenario from the days of classic themes where a plugin would use a filter to auto-append a login/logout link to a navigation menu. This is no longer possible with block themes, so contributors have devised auto-inserting blocks as a creative solution that retains ease of use offered by simply activating a plugin and preserves the ability of the user to modify the blocks once inserted.</p>\n\n\n\n<p>Gutenberg 16.4 also introduces a new, <a href=\"https://github.com/WordPress/gutenberg/pull/53030\">horizontal <code>ProgressBar</code> component</a> that can be used throughout the interface. It may soon replace the <code>Spinner</code> component that is currently used in the Site Editor loading experience. An indeterminate version (indicates that a process is occurring but with no specific progress measurement) and a determinant version (a progress bar that indicates the progress made, moving towards 100%) are included in this component.</p>\n\n\n\nindeterminate progress bar – video source: <a href=\"https://github.com/WordPress/gutenberg/pull/53030\">Gutenberg PR #53030</a>\n\n\n\ndeterminate progress bar – video source: <a href=\"https://github.com/WordPress/gutenberg/pull/53030\">Gutenberg PR #53030</a>\n\n\n\n<p>The Command Palette, which landed in <a href=\"https://wptavern.com/wordpress-6-3-lionel-introduces-command-palette-expands-pattern-management-and-design-tools\">WordPress 6.3</a> earlier this week, is getting three new commands in this release:</p>\n\n\n\n<ul>\n<li>Show/hide block breadcrumbs</li>\n\n\n\n<li>Enable/disable pre-publish checklist</li>\n\n\n\n<li>Preview in a new tab</li>\n</ul>\n\n\n\n<p>WordPress’ block library has expanded design control support for the following blocks: </p>\n\n\n\n<ul>\n<li>Footnotes: Add link, background, and text color support. (<a href=\"https://github.com/WordPress/gutenberg/pull/52897\">52897</a>)</li>\n\n\n\n<li>Footnotes: Add typography, dimensions, and border block supports (<a href=\"https://github.com/WordPress/gutenberg/pull/53044\">53044</a>)</li>\n\n\n\n<li>Preformatted: Add spacing support. (<a href=\"https://github.com/WordPress/gutenberg/pull/45196\">45196</a>)</li>\n\n\n\n<li>Social Links: Add Threads Icon. (<a href=\"https://github.com/WordPress/gutenberg/pull/52685\">52685</a>)</li>\n\n\n\n<li>Verse: Enable the line breaks. (<a href=\"https://github.com/WordPress/gutenberg/pull/52928\">52928</a>)</li>\n</ul>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\">16.4 release post</a> for more details on all the enhancements, bug fixes, and accessibility and performance improvements.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Aug 2023 22:05:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: WordPress 6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=94453\";s:7:\"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/2023/08/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:537:\"<p>Version 6.3 is out! Time to fire up your updating engines. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f604.png\" alt=\"😄\" class=\"wp-smiley\" /> This is actually a really big one. (As a reminder, we do three major release of WP per year and each one is a +0.1, 7.0 will just be the next release after 6.9, so big things can happen in random version numbers.) <a href=\"https://wordpress.org/download/releases/6-3/\">We’ve made a release landing page to cover some of the new things in this one, check it out</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Aug 2023 16:31:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:127:\"Do The Woo Community: Разговор са Вордпрес заједницом Србије / The Serbia 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75823\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://dothewoo.io/the-serbia-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:430:\"<p>Today we have an episode by the Serbian WordPress Community, for the Serbian WordPress community.</p>\n<p>>> The post <a rel=\"nofollow\" href=\"https://dothewoo.io/the-serbia-wordpress-community/\">Разговор са Вордпрес заједницом Србије / The Serbia WordPress Community</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Aug 2023 07:44: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: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:123:\"WPTavern: WordPress Plugin Review Team Addresses Backlog of 900+ Plugins, Implements Strategies to Improve Approval Process\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147639\";s:7:\"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:132:\"https://wptavern.com/wordpress-plugin-review-team-addresses-backlog-of-900-plugins-implements-strategies-to-improve-approval-process\";s: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:4146:\"<p>WordPress’ Plugin Review team is wading through a backlog that was over 900 plugins awaiting approval earlier this week. The current count has 870 plugins sitting in the <a href=\"https://wordpress.org/plugins/developers/add/\">review queue</a>, with an average wait time of 61 days before initial review.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1856\" height=\"388\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-09-at-5.24.43-PM.png\" alt=\"\" class=\"wp-image-147652\" />\n\n\n\n<p>WordPress developer Marcus Burnette <a href=\"https://twitter.com/marcusdburnette/status/1688961018943221778\">drew attention to the matter on Twitter</a> after submitting a plugin he created to display a gallery of your own WordPress Photo Directory photos on your website. Other developers commented on his post, reporting that their recently-approved plugins took two months.</p>\n\n\n\n<p>WordPress Executive Director Josepha Haden Chomphosy responded with an invitation to contributors who want to learn how to review plugins and <a href=\"https://make.wordpress.org/plugins/handbook/apply/\">apply to join the team</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">There\'s an open application for anyone who wants to learn how to review these plugins and help us chip away at the backlog! <a href=\"https://t.co/nDF3tiOuvH\">https://t.co/nDF3tiOuvH</a> <a href=\"https://t.co/28lrCFtx4U\">https://t.co/28lrCFtx4U</a></p>— Josepha Haden Chomphosy (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1688983991792078848?ref_src=twsrc%5Etfw\">August 8, 2023</a></blockquote>\n</div>\n\n\n\n<p>The volunteer team responsible for reviewing plugins has undergone significant restructuring after the departure of long-time contributor Mika Epstein. In June, the team <a href=\"https://wptavern.com/wordpress-plugin-review-team-adds-6-new-sponsored-volunteers-opens-applications\">added six new sponsored volunteers</a> and opened applications for more team members. They have selected new team reps and have more than 20 applicants who have expressed interest in volunteering.</p>\n\n\n\n<p>“The first challenge we found during our onboarding was the fact that a lot of processes were not clearly documented,” newly selected team rep Francisco Torres said in a recent <a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">update</a>. “We asked A LOT of questions during this process and ensured that all the answers Mika shared with us were added to the team’s internal docs. This effort should make it a lot easier for new contributors to join the team down the road.</p>\n\n\n\n<p>“We have also improved our internal tools to catch the most common coding mistakes and have built our predefined responses into the output provided by this tool. We still review this content manually before sending out replies, but by merging the two tasks into one (reviewing the code and drafting the message) we have been able to cut down review time considerably.”</p>\n\n\n\n<p>In strategizing ways to cut through the formidable plugin backlog, the team has begun speeding up the process by performing a cursory initial review, followed by a more thorough one once the plugin author has fixed the most obvious issues.</p>\n\n\n\n<p>“In order to tackle the backlog faster, we’re now spending less time on initial reviews,” Torres said. “We begin checking issues that take us less time, and then as soon as we spot one or two issues with the plugin that would prevent it from being approved, we email the plugin author to ask them to fix the initial issues. If the author gets back to us with those first fixes, then we proceed with an in-depth review.”</p>\n\n\n\n<p>A two-month wait can be demoralizing for developers who are excited to share their open source plugins with the world. Now that the whole process is getting documented and refined to be more efficient, the Plugin Review Team will be better able to onboard new reviewers and put them in place to tackle the backlog. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Aug 2023 01:39:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:62:\"WPTavern: Kadence Blocks 3.1.11 Patches Critical Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147644\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/kadence-blocks-3-1-11-patches-critical-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1925:\"<p>The <a href=\"https://wordpress.org/plugins/kadence-blocks/\">Kadence Blocks</a> plugin, which is used on more than 300,000 WordPress sites, has patched a critical vulnerability in its Advanced Form Block file upload capability. Version 3.1.11, released on August 8, 2023, patches the security issue with the form uploads.</p>\n\n\n\n<p>The plugin’s development team is getting out ahead of the situation by posting an <a href=\"https://www.kadencewp.com/blog/kadence-blocks-3-1-11-includes-patch-for-critical-vulnerability/\">advisory</a> on their blog, with a short description of the vulnerability and its potential for exploit.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The Kadence Advanced Form Block, introduced in Kadence Blocks 3.1, offers site owners the ability to add a file upload capability to their site. The code within the Advanced Form Block had insufficient tests to limit what types of files can be uploaded. This could allow attackers to upload a file claiming to be a valid image type that actually contained malicious PHP code. That PHP code could be malicious, and in so doing, take over a vulnerable WordPress website. Exploiting this vulnerability would require a settings at the server level that would be considered insecure. Most premium hosting providers secure upload folders from PHP execution at the server level, though many budget hosting providers do not.</p>\n</blockquote>\n\n\n\n<p>Kadence Blocks developer Ben Ritner said sites that are not using the Advanced Form Block file upload capability are not subject to this vulnerability. At this time the vulnerability is not known to have been exploited.</p>\n\n\n\n<p>Kadence Blocks users are encouraged to update immediately and check for unexpected users, admin accounts, and content changes. The advisory also includes ways to make file uploads more secure, including limiting file type, adding authentication, and scanning for viruses.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 20:36:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:116:\"Post Status: WordPress 6.3 • Release Workflows • European Union Cyber Resiliency Act • Gutenberg Accessibility\";s:7:\"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://poststatus.com/?p=150107\";s:7:\"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:37:\"https://poststatus.com/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18770:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.3, Lionel, has been released. It’s time to test out the details and footnotes blocks, give the WP_DEVELOPMENT_MODE a try, and check out the new Get Involved tab on the Welcome screen. The WordPress Training team announces its first course cohort for Learn.WordPress.org. The course will cover Developing Your First WordPress Block, and offer… </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fas_rocket kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, 1st LearnWP Cohort, EU CRA</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f195.png\" alt=\"🆕\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d1-1f3fd-200d-1f3eb.png\" alt=\"🧑🏽🏫\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f510.png\" alt=\"🔐\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/contribute\">Contribute</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-9 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-14 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/07/matrix-test-results/\">Matrix Test Results</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">WordPress 6.3 performance improvements</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/styling-blocks-empowering-users-with-css-custom-properties/\">Styling blocks: empowering users with CSS custom properties</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/09/dev-chat-agenda-august-9-2023/\">Dev Chat agenda, August 9, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/editor-chat-agenda-9-august-2023/\">Editor Chat Agenda: 9 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/documentation-team-update-august-7-2023/\">Documentation Team Update – August 7, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/08/performance-chat-summary-8-august-2023/\">Performance Chat Summary: 8 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/plugin-review-team-7-august-2023/\">Plugin Review Team: 7 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/adding-some-meta-buttons-always-visible/\">Adding some meta buttons always visible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/new-wordpress-org-theme-for-your-rosetta-site/\">New WordPress.org Theme for your Rosetta Site</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/test-team-update-7-august-2023/\">Test Team Update: 7 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/07/themes-team-meeting-agenda-for-august-08-2023/\">Themes team meeting agenda for August 08, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/themes-team-update-august-08-2023/\">Themes team update August 08, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person & Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/exploring-wordpress-6-3/\">Exploring WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-spacer-block/\">How to use the spacer block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-6\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-5\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-day-online-session-2\">Training Team Contributor Day Online Session</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status’ <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It’s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 20:02:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";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:63:\"Akismet: How to Disable Comments in WordPress (and When Not to)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=160334\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://akismet.com/blog/how-to-disable-comments-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:20534:\"<p>The heart of an online presence lies in its engaging community, and what better way to foster such engagement than allowing users to post comments? Yet, there are moments when it might be necessary to hit the “off” switch. If your comments section gets flooded with spam, your impulse may be to automatically close comments before things get too messy. </p>\n\n\n\n<p>But you don’t necessarily need to do that. Today, we’ll delve into how to disable comments in WordPress and also discuss situations where this isn’t the best decision. And we’ll explore solutions to common concerns, such as managing spam, using powerful tools like Akismet.</p>\n\n\n\n<p>Let’s get right to it.</p>\n\n\n\n<span id=\"more-160334\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Turning off comments to stop spam? Install Akismet instead</h2>\n\n\n\n<p>Before you disable comments altogether, consider what’s really bothering you.</p>\n\n\n\n<p>Is it the <a href=\"https://akismet.com/blog/how-to-stop-comment-spam-in-wordpress/\">flood of spam</a> making your management duties unbearable? Or, are trolls wreaking havoc on your site’s overall positive vibes? It’s natural to feel overwhelmed and think of disabling comments as the quick fix. But there’s a better method you can employ.</p>\n\n\n\n<p>Enter <a href=\"https://akismet.com/\">Akismet</a>, your staunch ally in the battle against spam. This robust tool packs quite a punch when it comes to filtering out spammy content, letting you revel in the genuine, quality interaction with your users.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image2.jpg\" alt=\"Akismet homepage with the text, \" />\n\n\n\n<p>A blend of simplicity and power, Akismet is astoundingly easy to use. Once installed and set up, it works quietly behind the scenes of your entire WordPress site, sifting through incoming comments, and sweeping away spam. All you’re left with are the comments that truly matter. You’ll see the difference immediately and wonder how you ever managed without it.</p>\n\n\n\n<p>Here are a few features that make Akismet your hero:</p>\n\n\n\n<ul>\n<li><strong>Automatic spam detection</strong>: It checks and filters every comment, so you don’t have to spend your precious time discerning real comments from spam.</li>\n\n\n\n<li><strong>A flexible discard feature</strong>: You have complete control. You can choose to discard the worst and most pervasive spam, so you’ll never have to see it.</li>\n\n\n\n<li><strong>A visible comment status history</strong>: For each comment, Akismet provides a status history, so you can understand where the spam was caught, cleared, or missed.</li>\n</ul>\n\n\n\n<p>This is all fine and well, but maybe it seems like too much trouble. Couldn’t you just disable comments across the board and be done with it? Certainly, you could. But there are tangible <a href=\"https://akismet.com/blog/wordpress-pros-and-cons-of-enabling-comments/\">benefits to keeping comments turned on</a> in WordPress. </p>\n\n\n\n<p>For instance, comments can:</p>\n\n\n\n<ul>\n<li>Boost community engagement</li>\n\n\n\n<li>Encourage repeat visitors</li>\n\n\n\n<li>Provide a way to get quick feedback</li>\n\n\n\n<li>Improve on-page SEO</li>\n</ul>\n\n\n\n<p>But if left to run amuck, an overabundance of spam comments can leave a sour taste in visitors’ mouths. An unmoderated comment section can:</p>\n\n\n\n<ul>\n<li>Look unprofessional</li>\n\n\n\n<li>Affect site security</li>\n\n\n\n<li>Attract more spam comments</li>\n\n\n\n<li>Create more work for admins</li>\n</ul>\n\n\n\n<p>All that being said, before you decide to disable comments in WordPress for future posts entirely, give Akismet a shot. As one of the <a href=\"https://akismet.com/blog/best-anti-spam-wordpress-plugins-compared/\">best anti-spam plugins on WordPress</a>, it’s the solution that preserves your community engagement while keeping your WordPress website clean and spam free.</p>\n\n\n\n<p>Still, there might be situations where you want to learn how to turn off comments in WordPress. Perhaps you’ve decided to repurpose your blog as a purely informational site, or maybe you have a specific WordPress post that doesn’t require engagement. Whatever your reasons, we’ll walk you through the process next.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Still want to disable WordPress comments? Here are four ways to do so:</h2>\n\n\n\n<p>While we advocate for keeping the <a href=\"https://akismet.com/blog/wordpress-comment-system/\">comments section</a> activated, there are times when you may feel it necessary to hit that “disable” button. If you’ve made up your mind, here are four ways to turn off comments in WordPress:</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image11.jpg\" alt=\"man in a maroon sweater looking at a computer screen\" class=\"wp-image-160337\" />\n\n\n\n<h3 class=\"wp-block-heading\">1. Turn off comments in your WordPress settings</h3>\n\n\n\n<p>One way to disable comments site-wide is through the WordPress Discussion settings.</p>\n\n\n\n<p>Here’s how you do it:</p>\n\n\n\n<ol>\n<li><a href=\"https://jetpack.com/blog/wordpress-admin-dashboard/\">From your WordPress Dashboard</a>, navigate to <strong>Settings → Discussion</strong>.</li>\n\n\n\n<li>In the <strong>Default post settings</strong> section, uncheck the box that says <strong>Allow people to comment on new posts</strong>.</li>\n\n\n\n<li>Scroll down and click <strong>Save Changes</strong>.</li>\n</ol>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image9.jpg\" alt=\"discussion settings in WordPress\" class=\"wp-image-160338\" />\n\n\n\n<p>Remember, this setting only applies to future posts. Your old posts will still have comments enabled unless you disable them individually or in bulk, which brings us to our next point.</p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Disable comments on a specific post</h3>\n\n\n\n<p>Maybe you just want to turn off comments for one or a few specific posts. That’s easy to accomplish as well:</p>\n\n\n\n<ol>\n<li>From the WordPress dashboard, navigate to <strong>Posts</strong> or <strong>Pages</strong> and find the post or page where you want to disable comments.</li>\n\n\n\n<li>Click <strong>Edit</strong> to open the post or page.</li>\n\n\n\n<li>On the right-hand side of the screen, in the <strong>Post</strong> tab, scroll down to <strong>Discussion</strong>.</li>\n\n\n\n<li>Uncheck <strong>Allow comments</strong>.</li>\n\n\n\n<li><strong>Update</strong> or<strong> Publish</strong> the post to save your changes.</li>\n</ol>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image6.jpg\" alt=\"comment settings on an individual blog post\" class=\"wp-image-160339\" />\n\n\n\n<p>Or, you can do this from the Post or Pages list. Instead of clicking on the post to open the Block Editor, click <strong>Quick Edit</strong>, uncheck the box that says <strong>Allow Comments.</strong> then click <strong>Save</strong>.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image8.jpg\" alt=\"turning off comments for a post\" class=\"wp-image-160340\" />\n\n\n\n<h3 class=\"wp-block-heading\">3. Disable comments in bulk on a group of posts</h3>\n\n\n\n<p>If you need to disable comments on multiple posts, you can do so quickly with the bulk edit feature:</p>\n\n\n\n<ol>\n<li>Go to <strong>Posts</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Check the boxes next to the posts where you want to disable WordPress comments.</li>\n\n\n\n<li>From the <strong>Bulk Actions</strong> drop-down at the top, choose <strong>Edit,</strong> then click <strong>Apply</strong>.</li>\n\n\n\n<li>In the <strong>Bulk Edit</strong> box that appears, find <strong>Comments</strong> and select<strong> Do not allow</strong>.</li>\n\n\n\n<li>Click on the <strong>Update</strong> button to save your changes.</li>\n</ol>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image7.jpg\" alt=\"turning off comments on posts in bulk\" class=\"wp-image-160342\" />\n\n\n\n<h3 class=\"wp-block-heading\">4. Turn off comments using custom code</h3>\n\n\n\n<p>If you feel comfortable tinkering with your site’s code, you can turn off comments by adding a few lines to your theme’s <em>single.php</em> file. This is the file that controls specifications for your site’s blog posts.</p>\n\n\n\n<p><em>Note: Before making any changes to your site’s code, always make a backup. Accidents can happen, and you don’t want to lose your site’s data. </em><a href=\"https://jetpack.com/upgrade/backup/\"><em>Jetpack VaultPress Backup</em></a><em> is the ideal solution for this purpose. Finally, it’s important to use a child theme in a staging environment before pushing your changes to your live site.</em></p>\n\n\n\n<p>Once you’re ready, locate your <em>single.php</em> file and open it in an HTML editor. Find the follow line of code in the file:</p>\n\n\n\n<pre class=\"wp-block-code\"><code><em><?php comments_template(); ?></em></code></pre>\n\n\n\n<p>Highlight this bit of code and replace it with the following:</p>\n\n\n\n<pre class=\"wp-block-code\"><code><!-- Begin Comment\n\n<?php comments_template(); ?>\n\nEnd Comment --></code></pre>\n\n\n\n<p>This code will turn off comments for all the posts on your WordPress site (and will even remove existing comments). By using this method, you’re “commenting out” the line of code that enables comments on your WordPress site. This turns that line of code into a “note” (such as ones you might make for other developers to reference if they’re troubleshooting your work) instead of a line that would actually be executed. </p>\n\n\n\n<p>Disabling comments in this way is a better solution than simply removing the line of code entirely because you can more easily re-enable comments again in the future. </p>\n\n\n\n<p>You can repeat this process for additional post types, including your site’s pages.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Alternative solution: Keep comments enabled, but block spam</h3>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image5.png\" alt=\"\" class=\"wp-image-160343\" />\n\n\n\n<p>If you feel hesitant about taking the last-ditch approach to disable comments in WordPress altogether, there <em>is </em>a better solution. Consider keeping comments enabled but blocking spam. It’s the middle-ground solution that lets you foster community engagement while keeping spam at bay.</p>\n\n\n\n<p>Akismet is your go-to tool for this purpose. Once enabled, it screens every comment and filters out those that look like spam. You’re left with genuine interaction without the headache of moderating every single comment manually.</p>\n\n\n\n<p>To get started with Akismet, you’ll first need to install and activate the Akismet plugin. Here’s a step-by-step guide to get you up and running:</p>\n\n\n\n<ol>\n<li>From your WordPress dashboard, navigate to <strong>Plugins</strong> and then click on <strong>Add New</strong>.</li>\n\n\n\n<li>In the search box, type “Akismet”. It should be the first result that appears.</li>\n\n\n\n<li>Click on the <strong>Install Now</strong> button and then <strong>Activate</strong>.</li>\n</ol>\n\n\n\n<p>Now that the Akismet plugin is activated, you’ll need to set it up:</p>\n\n\n\n<ol>\n<li>Go to <strong>Settings → Akismet Anti-Spam</strong>.</li>\n\n\n\n<li>You’ll be asked for your <strong>Akismet API key</strong>. If you don’t have one, go to the Akismet website, where you can sign up for an account and create a key.</li>\n\n\n\n<li>Once you’ve got your key, enter it in the API Key field, then click <strong>Save Changes</strong>.</li>\n\n\n\n<li>Akismet is now connected to your WordPress site.</li>\n</ol>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image12.jpg\" alt=\"settings for Akismet\" class=\"wp-image-160344\" />\n\n\n\n<p>That’s it! Akismet is now set up and ready to start blocking spam.</p>\n\n\n\n<p>You can view stats and see how many spam comments Akismet has blocked by visiting the <strong>Akismet Stats</strong> page in your WordPress dashboard.</p>\n\n\n\n<p>Remember, enabling comments doesn’t have to mean opening the floodgates to spam. With Akismet on guard, you can enjoy the best of both worlds: an engaged community and a spam-free commenting experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to delete past comments in bulk</h2>\n\n\n\n<p>Whether you’ve decided to disable comments or simply need to clear out old, irrelevant chatter on existing published posts, WordPress provides easy ways to delete all the comments from the past.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image1.jpg\" alt=\"crumpled up paper by a trash can\" class=\"wp-image-160345\" />\n\n\n\n<p>Let’s start with handling this task in bulk:</p>\n\n\n\n<ol>\n<li><a href=\"https://jetpack.com/blog/how-to-back-up-your-wordpress-site/\">Create a backup of your WordPress site</a> before making any major changes.</li>\n\n\n\n<li>Navigate to the<strong> Comments </strong>section in your WordPress dashboard.</li>\n\n\n\n<li>By default, all comments are displayed. You can filter them by clicking on the All, Pending, Approved, Spam, or Trash links at the top.</li>\n\n\n\n<li>Once you’ve chosen the comments you wish to delete, check the box next to Author at the top to select all comments on the page. Alternatively, you can manually select individual comments.</li>\n\n\n\n<li>From the <strong>Bulk Actions </strong>dropdown menu, choose <strong>Move to Trash</strong> and then click <strong>Apply</strong>.</li>\n</ol>\n\n\n\n<p>This will send all selected comments to the trash. If you want to permanently delete these comments:</p>\n\n\n\n<ol>\n<li>Click on the <strong>Trash</strong> link at the top.</li>\n\n\n\n<li>Click the<strong> Empty Trash </strong>button.</li>\n</ol>\n\n\n\n<p>And that’s it. Your selected comments are gone for good.</p>\n\n\n\n<p>The only problem here is that, by default, you can only bulk delete 20 comments at a time. To get around this, click <strong>Screen Options</strong> at the top of the Comments page. Beside “Number of items per page,” change “20” to whatever you’d like and click <strong>Apply.</strong></p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image4.png\" alt=\"selecting the number of posts per page\" class=\"wp-image-160346\" />\n\n\n\n<h2 class=\"wp-block-heading\">How to delete past comments on individual posts</h2>\n\n\n\n<p>If you’re only interested in pruning comments from specific existing posts, WordPress offers an efficient way to do so. Here’s how:</p>\n\n\n\n<ol>\n<li>Navigate to <strong>Posts</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Find the post from which you want to remove comments and, in the Comments column, click the number of published comments for that post.</li>\n\n\n\n<li>You’ll now see a list of all comments for that post. Hover over the comment you want to delete to reveal a menu and click <strong>Trash</strong>.</li>\n\n\n\n<li>If you want to permanently delete this comment, click on the <strong>Trash</strong> link at the top to view all trashed comments. Hover over the comment you just trashed, and click <strong>Delete Permanently</strong>.</li>\n</ol>\n\n\n\n<p>That’s it! You’ve successfully learned how to manage and control the comments section on your WordPress site. While it might be tempting to disable comments during tough times, tools like Akismet can make the task a lot easier, ensuring your site remains a place for valuable discussion.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions</h2>\n\n\n\n<p>Having shed light on how to disable comments in WordPress, let’s now address some frequently asked questions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Why use Akismet instead of disabling comments?</h3>\n\n\n\n<p>Akismet is a powerful spam filtering service that can significantly reduce the time and effort you spend moderating comments. By using Akismet, you can maintain an open forum for your users to engage and interact without the headache of dealing with comment spam. </p>\n\n\n\n<p>This helps foster a sense of community around your content and can also improve your site’s SEO by encouraging user-generated content. In contrast, disabling comments shuts down these possibilities.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What are other advantages of enabling comments?</h3>\n\n\n\n<p>Enabling comments on your site creates a two-way communication channel between you and your visitors. This can lead to insightful discussions, provide feedback, and generate new ideas for content. Comments also increase the time people spend on your site, which can boost your SEO.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/07/image10.jpg\" alt=\"black coffee mug next to a laptop\" class=\"wp-image-160347\" />\n\n\n\n<h3 class=\"wp-block-heading\">What should I do if comments are disabled but still showing?</h3>\n\n\n\n<p>If you chose to disable comments in WordPress, but comments are still appearing on your site, it might be that they were posted before you disabled comments. In such a case, you’ll need to manually delete these comments. You can refer to our sections on how to delete comments in bulk or on individual posts for step-by-step instructions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I disable comments on media files?</h3>\n\n\n\n<p>WordPress treats media files (images, videos, etc.) as separate posts, which means they can have their own comment sections. To disable comments on media files, you’ll need to do the following:</p>\n\n\n\n<ol>\n<li>Go to <strong>Media → Library</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Click on the media file you want to disable comments for.</li>\n\n\n\n<li>On the right hand side of the screen click <strong>Edit more details</strong>.</li>\n\n\n\n<li>Under the <strong>Discussion</strong> section, uncheck the box that says <strong>Allow comments</strong>. If you don’t see this option, click <strong>Screen Options </strong>at the top and check the box next to <strong>Comments</strong>. </li>\n\n\n\n<li>Click <strong>Update</strong> to save changes.</li>\n</ol>\n\n\n\n<p>Repeat this process for each media file you want to disable comments for.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I remove the “Comments Are Closed” message?</h3>\n\n\n\n<p>The “Comments Are Closed” message typically appears when comments have been disabled on a post that had comments previously published. One way to remove this is by adding this CSS to your site.</p>\n\n\n\n<p>In your dashboard, go to <strong>Appearance → Additional CSS.</strong> Add this line of code to the bottom:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>.nocomments {\n\n display: none;\n\n}</code></pre>\n\n\n\n<p>Then, click <strong>Publish.</strong> </p>\n\n\n\n<p>This should work for the majority of themes. If, however, your theme uses a different CSS class for the “Comments Are Closed” message, you’ll need to replace “.nocomments” with the correct line.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I remove the comment counter on my blog?</h3>\n\n\n\n<p>The comment counter is a feature that comes with many WordPress themes. To remove it, you’ll need to edit your theme’s files. Again, back up your site before making any changes.</p>\n\n\n\n<ol>\n<li>Go to <strong>Appearance → Additional CSS</strong>.</li>\n\n\n\n<li>Next, you need to hide the<em> .comments_count class</em>. To do this, paste this code snippet at the bottom:</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code>.comments-count {\n\n display: none;\n\n}</code></pre>\n\n\n\n<ol start=\"3\">\n<li>Click <strong>Publish</strong> to save your changes.</li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">Akismet: AI-powered anti-spam for WordPress comments and forms</h2>\n\n\n\n<p>Comments form a vibrant part of any blog or website, sparking discussions, fostering community, and generating valuable user engagement. However, managing spam can turn this asset into a hassle. That’s why Akismet is such a valuable plugin — it can transform the chore of comment moderation into an automated process.</p>\n\n\n\n<p>Harnessing the power of AI, Akismet helps keep your comments section clean, filtering out spam and allowing genuine interactions to shine. While disabling comments might seem like a tempting quick fix, consider this alternative: a world where your users can freely submit comments to share their thoughts, ideas, and appreciation without you having to worry about an onslaught of spam.</p>\n\n\n\n<p><a href=\"https://akismet.com/pricing/\">Get started with Akismet</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 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:12:\"Kathryn Marr\";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:108:\"WPTavern: WordPress 6.3 “Lionel” Introduces Command Palette, Expands Pattern Management and Design 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:30:\"https://wptavern.com/?p=147591\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/wordpress-6-3-lionel-introduces-command-palette-expands-pattern-management-and-design-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:8996:\"<img width=\"1508\" height=\"1124\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-08-at-5.19.49-PM.png\" alt=\"\" class=\"wp-image-147623\" />image credit: <a href=\"https://garystockbridge617.getarchive.net/amp/media/lionel-hamptonnovember-1956-a54db8\">Lionel Hampton.November 1956. Örebro, Sverive</a>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3</a> “Lionel” was released today, named for <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, an American jazz vibraphonist, pianist, percussionist, and bandleader.</p>\n\n\n\n<p>As the last release in Phase 2 of the Gutenberg project, many updates in WordPress 6.3 are targeted at polishing up customization features and the UI that supports them. </p>\n\n\n\n<p>Content, templates, and patterns can now be <a href=\"https://github.com/WordPress/gutenberg/issues/44461\">edited together</a>, without the user having to leave the Site Editor. This streamlines the workflow across templates and content, making it easier to build out a website with live previews. Users can now <a href=\"https://github.com/WordPress/gutenberg/pull/50565\">create new pages</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/50565\">view page details in the sidebar</a>, an experience that is very similar to editing a page in the block editor except that it keeps the process inside the flow of design editing.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/core/2023/06/14/whats-new-in-gutenberg-16-0-14-june/\">Gutenberg 16.0 release post</a>\n\n\n\n<h3 class=\"wp-block-heading\">Pattern Management Expands to Include Creating and Syncing Patterns</h3>\n\n\n\n<p>Pattern management was a major focus of the 6.3 release. Users can now arrange blocks to create their own patterns and save them to a library where they can be searched and edited. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1600\" height=\"922\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/07/Patterns-changes.png\" alt=\"\" class=\"wp-image-146981\" />Changes to Patterns – <a href=\"https://make.wordpress.org/core/2023/07/14/whats-new-in-gutenberg-16-2-12-july/\">Gutenberg 16.2 release post</a>\n\n\n\n<p>Reusable blocks have been <a href=\"https://wptavern.com/reusable-blocks-renamed-to-patterns-with-synced-and-non-synced-options\">renamed to synced patterns</a> but still function the same way. They can be created and edited in the block editor and then inserted into posts or pages with the edits synced. Block patterns, once inserted, can be edited and are not synced across other instances. </p>\n\n\n\n<p>The difference between synced and non-synced patterns is shown in the <a href=\"https://github.com/WordPress/gutenberg/pull/51954\">sync status details section</a> within the pattern sidebar navigation screen. <a href=\"https://github.com/WordPress/gutenberg/pull/51990\">A new lock icon</a> designates theme patterns as unable to be edited or modified.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"874\" height=\"577\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/07/lock-and-sync-indicators.png\" alt=\"\" class=\"wp-image-146543\" />image credit: <a href=\"https://github.com/WordPress/gutenberg/pull/51990\">Gutenberg PR #51990</a>\n\n\n\n<h3 class=\"wp-block-heading\">New Command Palette Tool Enables Quick Search and Command Execution</h3>\n\n\n\n<p>WordPress 6.3 <a href=\"https://wptavern.com/wordpress-6-3-will-introduce-a-command-palette\">introduces a new Command Palette</a> that was designed to be an extensible quick search and command execution tool. Users can do things like navigate to a page or post, add new content or a template, and toggle UI elements and editor preferences, among other things. It can be activated by using keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows) or by clicking the sidebar search icon in Site View, or clicking the Title Bar.</p>\n\n\n\n<p>Contributors are considering <a href=\"https://github.com/WordPress/gutenberg/issues/53299\">adding support for WP-CLI commands</a> in future iterations. The Command Palette is <a href=\"https://github.com/WordPress/gutenberg/pull/51169\">launching with a public API</a> so developers can explore extending it to add their own commands.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"500\" height=\"500\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/3-command-palette-500x500.webp\" alt=\"\" class=\"wp-image-147613\" />image source: WordPress 6.3 About Page\n\n\n\n<h3 class=\"wp-block-heading\">WordPress’ Design Tools Updated to Include More Customization Capabilities</h3>\n\n\n\n<p>This release significantly expands the capabilities of existing design tools to make it easier to customize the finer details. Users can now design their own caption styles through the Styles interface without writing any CSS. Duotone filters are now available to be managed in Styles for blocks that support them and there is an option to disable them entirely. The Cover block’s settings capabilities have been expanded to include text color, layout controls, and border options.</p>\n\n\n\n<p>A few other notable new features and improvements in WordPress 6.3 include the following: </p>\n\n\n\n<ul>\n<li>Style revisions in the Site Editor let users revert to previous versions of the design</li>\n\n\n\n<li>New Footnotes block automatically links annotations throughout the content</li>\n\n\n\n<li>New Details block allows users to easily show or hide content </li>\n\n\n\n<li>Preview block themes before activating</li>\n\n\n\n<li>Set aspect ratio on images</li>\n\n\n\n<li>Distraction-free mode now available in the Site Editor</li>\n\n\n\n<li>Revamped top toolbar</li>\n\n\n\n<li>Improvements to List View’s drag-and-drop functionality</li>\n\n\n\n<li>New modal for building templates with patterns</li>\n\n\n\n<li>Failed update safeguards</li>\n\n\n\n<li>Minimum supported version of PHP updated to 7.0.0</li>\n\n\n\n<li>50+ accessibility improvements for labeling, tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor </li>\n</ul>\n\n\n\n<p>This release also brings more than 170 performance improvements and is significantly faster than previous versions.</p>\n\n\n\n<p>“Based on the <a href=\"https://docs.google.com/spreadsheets/d/1UMBN8H9r5ad5NPb81N3cx1bfAvhVDnd2UKpVU1FVgjc/edit\">performance benchmarks conducted</a> for RC3, <strong>WordPress 6.3 loads 24% faster for block themes and 18% faster for classic themes</strong>, compared to WordPress 6.2, based on the <a href=\"https://web.dev/lcp/\">Largest Contentful Paint (LCP)</a> metric,” Google-sponsored contributor Felix Arntz said in a <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">summary</a> on the improvements. “For WordPress 6.2, those improvements amounted to 18% and 5% respectively, so it is fair to summarize that WordPress 6.3 is a major achievement in terms of performance. “</p>\n\n\n\n<p>The most notable performance gains came from the introduction of defer and async support for the Scripts API and fetchpriority support for images, along with optimization of the <code>emoji-loader.js</code> script.</p>\n\n\n\n<p>WordPress 6.3 is the result of the efforts of more than 650 contributors across 52 countries, with ~32% of them (205) being first-time contributors. </p>\n\n\n\n<p>After updating to WordPress 6.3, users may notice a new “Get Involved” tab on the About page, designed to help new contributors find their place in the WordPress project. This addition closes a 10-year old <a href=\"https://core.trac.wordpress.org/ticket/23348\">ticket</a> that suggested adding a “Contribute” tab to the About page. It features both code-based and no-code contribution opportunities with a link to a new <a href=\"https://make.wordpress.org/contribute/\">WordPress.org/contributor</a> page. This page debuts a new interactive tool that helps visitors find contributor teams that might be a good fit for their interests and capabilities.</p>\n\n\n\n<p>“As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience,” WordPress 6.3 release lead Matías Ventura said.</p>\n\n\n\n<p>For more details on all the changes included under the hood in this release, check out the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">documentation for 6.3</a>, the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a>, and <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-3/\">6.3-related developer notes</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 21:29:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordPress.org blog: WordPress 6.3 “Lionel”\";s:7:\"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=15718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/08/lionel/\";s: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:64886:\"<img width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-15794\" />\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">“Lionel” marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\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 wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 “Lionel” today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&ssl=1\" alt=\"Image titled: \" /><em>Do everything in the Site Editor</em>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme. </p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting \" /><em>Preview a new block theme before you switch and commit</em>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" /><em>My patterns: All your patterns in one place</em>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" /><em>Get to know the new Command Palette </em>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" /><em>New design tools</em>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&ssl=1\" alt=\"Image titled \" /><em>Style revisions: See your style revision history </em>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" /><em>Add footnotes effortlessly with the new Footnotes Block</em>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&A section, or hide a long paragraph under a heading.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" /><em>Display or hide content with the new Details Block</em>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The new minimum supported version of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress. </p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content. </p>\n\n\n\n<p>To accompany this release, a new <a href=\"https://wordpress.org/download/releases/6-3/\">web experience</a> has been created to provide a more visual way of getting acquainted with the many improvements and new features of WordPress 6.3. </p>\n\n\n\n<p>Seeing WordPress 6.3 in action doesn’t stop there! Be sure to watch this brief <a href=\"https://www.youtube.com/watch?v=6JhJcOLySLY\">overview video</a> to get a taste of the many things “Lionel” has to offer.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"Contributing-to-WordPress\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors’ collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors! </p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads: <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing & Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community. </p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">Özgür KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro Gómez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benlk/\">Ben Keith</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan (a11n)</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">Habibur Rahman Delwar</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">Jomon Thomas Lobo</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkilä</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Morán</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">Léa McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">Laurent MILLET</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/mahendra0029/\">Mahendra Bishnoi</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">Sé Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">Sérgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">Süleyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/takshil/\">Takshil Kunadia</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Krüss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brathärig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br />Ships tools for building great sites<br />Collaboration</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 20:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"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:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 21 Aug 2023 17:04:27 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Mon, 21 Aug 2023 16:45:29 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 7\";}}s:5:\"build\";s:14:\"20211221010300\";}','no'),(6192,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1692680667','no'),(6193,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1692637467','no'),(6194,'_transient_timeout_dash_v2_5f25301ca0145abac6dfc3a0899dc43b','1692680667','no'),(6195,'_transient_dash_v2_5f25301ca0145abac6dfc3a0899dc43b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://en-gb.wordpress.org/2022/03/11/wordpress-5-9-2-security-and-maintenance-release/\'>WordPress 5.9.2 Security and Maintenance Release</a></li><li><a class=\'rsswidget\' href=\'https://en-gb.wordpress.org/2022/02/22/wordpress-5-9-1-maintenance-release/\'>WordPress 5.9.1 Maintenance Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://dothewoo.io/podcasting-and-doing-the-woo-at-wordcamp-us-2023/\'>Do The Woo Community: Podcasting and Doing the Woo at WordCamp US 2023</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/the-wp-agency-journey-with-rob-cairns-of-stunning-digital-marketing/\'>Post Status: The WP Agency Journey with Rob Cairns of Stunning Digital Marketing</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/wordpress-6-3-beta-2-help-test-wpdiversity-plugin-team-next-phase-mentorship/\'>Post Status: WordPress 6.3 Beta 2 • Help Test • WPDiversity • Plugin Team Next Phase • Mentorship</a></li></ul></div>','no'),(6204,'_site_transient_ai1wm_last_check_for_updates','1692637631','no'),(6207,'_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:63:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.3.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:63:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.3.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:3:\"6.3\";s:7:\"version\";s:3:\"6.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1692637675;s:15:\"version_checked\";s:3:\"6.3\";s:12:\"translations\";a:0:{}}','no'),(6209,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1692637679;s:7:\"checked\";a:5:{s:10:\"raw-energy\";s:3:\"1.0\";s:12:\"twentytwenty\";s:3:\"1.9\";s:15:\"twentytwentyone\";s:3:\"1.5\";s:17:\"twentytwentythree\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.1\";}s:8:\"response\";a:4:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.2.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.8.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.2.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(6210,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1692637679;s:8:\"response\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:5:\"6.2.0\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"6.3\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}s:8:\"requires\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"7.0\";s:12:\"release_date\";s:8:\"20230809\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:51:\"acf-gravityforms-add-on/acf-gravityforms-add-on.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/acf-gravityforms-add-on\";s:4:\"slug\";s:23:\"acf-gravityforms-add-on\";s:6:\"plugin\";s:51:\"acf-gravityforms-add-on/acf-gravityforms-add-on.php\";s:11:\"new_version\";s:5:\"1.3.5\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/acf-gravityforms-add-on/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/acf-gravityforms-add-on.1.3.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/acf-gravityforms-add-on/assets/icon-256x256.png?rev=1631911\";s:2:\"1x\";s:76:\"https://ps.w.org/acf-gravityforms-add-on/assets/icon-128x128.png?rev=1631911\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/acf-gravityforms-add-on/assets/banner-1544x500.png?rev=1631911\";s:2:\"1x\";s:78:\"https://ps.w.org/acf-gravityforms-add-on/assets/banner-772x250.png?rev=1631911\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}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:34:\"cloudflare-flexible-ssl/plugin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/cloudflare-flexible-ssl\";s:4:\"slug\";s:23:\"cloudflare-flexible-ssl\";s:6:\"plugin\";s:34:\"cloudflare-flexible-ssl/plugin.php\";s:11:\"new_version\";s:5:\"1.3.1\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/cloudflare-flexible-ssl/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/cloudflare-flexible-ssl.1.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/cloudflare-flexible-ssl/assets/icon-256x256.png?rev=2021081\";s:2:\"1x\";s:76:\"https://ps.w.org/cloudflare-flexible-ssl/assets/icon-128x128.jpg?rev=2021081\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/cloudflare-flexible-ssl/assets/banner-1544x500.png?rev=2362309\";s:2:\"1x\";s:78:\"https://ps.w.org/cloudflare-flexible-ssl/assets/banner-772x250.png?rev=2362309\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.2.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:21:\"safe-svg/safe-svg.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:22:\"w.org/plugins/safe-svg\";s:4:\"slug\";s:8:\"safe-svg\";s:6:\"plugin\";s:21:\"safe-svg/safe-svg.php\";s:11:\"new_version\";s:5:\"2.2.0\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/safe-svg/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/safe-svg.2.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:53:\"https://ps.w.org/safe-svg/assets/icon.svg?rev=2779013\";s:3:\"svg\";s:53:\"https://ps.w.org/safe-svg/assets/icon.svg?rev=2779013\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/safe-svg/assets/banner-1544x500.png?rev=2683939\";s:2:\"1x\";s:63:\"https://ps.w.org/safe-svg/assets/banner-772x250.png?rev=2683939\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}s:53:\"simple-custom-post-order/simple-custom-post-order.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/simple-custom-post-order\";s:4:\"slug\";s:24:\"simple-custom-post-order\";s:6:\"plugin\";s:53:\"simple-custom-post-order/simple-custom-post-order.php\";s:11:\"new_version\";s:5:\"2.5.6\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/simple-custom-post-order/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/simple-custom-post-order.2.5.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/simple-custom-post-order/assets/icon-256x256.jpg?rev=1859717\";s:2:\"1x\";s:77:\"https://ps.w.org/simple-custom-post-order/assets/icon-256x256.jpg?rev=1859717\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/simple-custom-post-order/assets/banner-772x250.jpg?rev=1859717\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:43:\"sticky-posts-switch/sticky-posts-switch.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/sticky-posts-switch\";s:4:\"slug\";s:19:\"sticky-posts-switch\";s:6:\"plugin\";s:43:\"sticky-posts-switch/sticky-posts-switch.php\";s:11:\"new_version\";s:5:\"2.1.3\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/sticky-posts-switch/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/sticky-posts-switch.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/sticky-posts-switch/assets/icon-256x256.jpg?rev=1631517\";s:2:\"1x\";s:72:\"https://ps.w.org/sticky-posts-switch/assets/icon-128x128.jpg?rev=1631517\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/sticky-posts-switch/assets/banner-1544x500.jpg?rev=1631702\";s:2:\"1x\";s:74:\"https://ps.w.org/sticky-posts-switch/assets/banner-772x250.jpg?rev=1631702\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:36:\"trustpilot-reviews/wc_trustpilot.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/trustpilot-reviews\";s:4:\"slug\";s:18:\"trustpilot-reviews\";s:6:\"plugin\";s:36:\"trustpilot-reviews/wc_trustpilot.php\";s:11:\"new_version\";s:7:\"2.5.925\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/trustpilot-reviews/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/trustpilot-reviews.2.5.925.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/trustpilot-reviews/assets/icon-256x256.png?rev=2029921\";s:2:\"1x\";s:71:\"https://ps.w.org/trustpilot-reviews/assets/icon-128x128.png?rev=2029921\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/trustpilot-reviews/assets/banner-1544x500.png?rev=1969938\";s:2:\"1x\";s:73:\"https://ps.w.org/trustpilot-reviews/assets/banner-772x250.png?rev=1969938\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.5.1\";}s:39:\"wp-file-manager/file_folder_manager.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-file-manager\";s:4:\"slug\";s:15:\"wp-file-manager\";s:6:\"plugin\";s:39:\"wp-file-manager/file_folder_manager.php\";s:11:\"new_version\";s:3:\"7.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-file-manager/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-file-manager.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-file-manager/assets/icon-128x128.png?rev=2491299\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-file-manager/assets/banner-772x250.jpg?rev=2491299\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:29:\"gravityforms/gravityforms.php\";O:8:\"stdClass\":6:{s:3:\"url\";s:24:\"https://gravityforms.com\";s:4:\"slug\";s:12:\"gravityforms\";s:6:\"plugin\";s:29:\"gravityforms/gravityforms.php\";s:7:\"package\";s:0:\"\";s:11:\"new_version\";s:6:\"2.7.12\";s:2:\"id\";s:1:\"0\";}}}','no'),(6219,'_transient_timeout_GFCache_870d3a7aceb2a2bb83b94ffd33674531','1692638204','no'),(6220,'_transient_GFCache_870d3a7aceb2a2bb83b94ffd33674531','a:2:{i:0;O:8:\"stdClass\":2:{s:7:\"form_id\";s:1:\"1\";s:11:\"entry_count\";s:2:\"51\";}i:1;O:8:\"stdClass\":2:{s:7:\"form_id\";s:1:\"2\";s:11:\"entry_count\";s:1:\"6\";}}','no'),(6221,'_transient_timeout_GFCache_b1f0bd4abb065168a140dd85c603e892','1692638204','no'),(6222,'_transient_GFCache_b1f0bd4abb065168a140dd85c603e892','a:2:{i:0;O:8:\"stdClass\":2:{s:7:\"form_id\";s:1:\"1\";s:10:\"view_count\";s:3:\"488\";}i:1;O:8:\"stdClass\":2:{s:7:\"form_id\";s:1:\"2\";s:10:\"view_count\";s:5:\"24240\";}}','no'),(6223,'_site_transient_timeout_available_translations','1699544094','no'),(6224,'_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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-06-18 08:25:23\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s: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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-28 08:07:35\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-06-23 11:21:55\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-29 06:53:25\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-29 07:53:16\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-21 11:59:07\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-05 14:06:30\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-19 15:27:26\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 09:49:50\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-20 15:13:11\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.3/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-20 15:19:10\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-18 08:19:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 09:52:35\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s: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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-26 09:27:21\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-28 15:57:23\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 07:13:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 16:08:07\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:3:\"6.3\";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:62:\"https://downloads.wordpress.org/translation/core/6.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 07:25:21\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-05-17 04:31:21\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-26 01:50:26\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 16:14:38\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-13 17:52:55\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-04 16:53:05\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-28 19:57:59\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s: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_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_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_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_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:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-26 22:44:00\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-25 15:24:22\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-29 13:15:12\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 16:30:48\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-29 13:17:45\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-10 17:08:26\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-22 18:15:33\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:3:\"6.3\";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:59:\"https://downloads.wordpress.org/translation/core/6.3/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-28 09:07:29\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-10 07:55:29\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-22 09:25:05\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-18 14:34:17\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-24 17:16:15\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-07 01:15:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.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.0.6\";s:7:\"updated\";s:19:\"2023-10-31 08:47:02\";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.0.6/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-04 06:07:20\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 00:11:15\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.3/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-18 17:02:03\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.3/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 18:51:09\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 01:58:55\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-19 21:47:18\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-25 08:55:15\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-28 18:38:21\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-29 11:56:04\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-21 08:48:39\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s: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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-02 09:00:40\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-23 18:55:37\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-23 18:57:54\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/6.3/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:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-29 11:22:05\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:3:\"6.3\";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:62:\"https://downloads.wordpress.org/translation/core/6.3/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: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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-29 11:22:49\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-29 11:43:02\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-17 07:24:11\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-13 11:41:50\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.3/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 12:29:02\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-19 10:40:17\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-29 11:44:44\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-19 20:18:40\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/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.1.4\";s:7:\"updated\";s:19:\"2023-03-04 10:46:30\";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.1.4/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.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:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 18:38:05\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-17 14:06:22\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_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');
/*!40000 ALTER TABLE `wpdh_options` ENABLE KEYS */;
--
-- Table structure for table `wpdh_postmeta`
--
DROP TABLE IF EXISTS `wpdh_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3133 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_postmeta`
--
/*!40000 ALTER TABLE `wpdh_postmeta` DISABLE KEYS */;
INSERT INTO `wpdh_postmeta` VALUES (2,3,'_wp_page_template','default'),(6,6,'_edit_lock','1689320078:2'),(7,6,'_wp_page_template','page-templates/homepage.php'),(8,8,'_edit_lock','1689320278:2'),(9,8,'_wp_page_template','page-templates/about.php'),(10,10,'_edit_lock','1688994606:3'),(11,10,'_wp_page_template','page-templates/team.php'),(12,12,'_edit_lock','1686062702:3'),(13,12,'_wp_page_template','page-templates/contact.php'),(14,14,'_edit_lock','1687862146:3'),(15,15,'_wp_attached_file','2023/05/solar-power-uses.png'),(16,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1780;s:6:\"height\";i:835;s:4:\"file\";s:28:\"2023/05/solar-power-uses.png\";s:8:\"filesize\";i:509427;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"solar-power-uses-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70394;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"solar-power-uses-1024x480.png\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:809610;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"solar-power-uses-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38429;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"solar-power-uses-768x360.png\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:451366;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"solar-power-uses-1536x721.png\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1868759;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17,14,'_thumbnail_id','195'),(29,21,'_menu_item_type','post_type'),(30,21,'_menu_item_menu_item_parent','0'),(31,21,'_menu_item_object_id','8'),(32,21,'_menu_item_object','page'),(33,21,'_menu_item_target',''),(34,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35,21,'_menu_item_xfn',''),(36,21,'_menu_item_url',''),(47,23,'_menu_item_type','post_type'),(48,23,'_menu_item_menu_item_parent','0'),(49,23,'_menu_item_object_id','10'),(50,23,'_menu_item_object','page'),(51,23,'_menu_item_target',''),(52,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(53,23,'_menu_item_xfn',''),(54,23,'_menu_item_url',''),(56,24,'_menu_item_type','post_type'),(57,24,'_menu_item_menu_item_parent','0'),(58,24,'_menu_item_object_id','12'),(59,24,'_menu_item_object','page'),(60,24,'_menu_item_target',''),(61,24,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(62,24,'_menu_item_xfn',''),(63,24,'_menu_item_url',''),(89,27,'_edit_lock','1688976914:3'),(90,28,'_edit_lock','1689101458:3'),(91,29,'_edit_lock','1689320058:2'),(92,30,'_edit_lock','1688977015:3'),(93,31,'_edit_lock','1685542607:2'),(94,32,'_edit_lock','1688981507:3'),(95,33,'_edit_lock','1686305456:3'),(96,34,'_edit_lock','1689320181:2'),(97,35,'_edit_lock','1689319686:2'),(98,36,'_edit_lock','1688981739:3'),(99,37,'_edit_lock','1688982662:3'),(100,38,'_edit_lock','1689334001:1'),(101,38,'_thumbnail_id','236'),(102,39,'_edit_lock','1689334183:1'),(103,39,'_thumbnail_id','253'),(104,40,'_edit_lock','1689334027:1'),(105,40,'_thumbnail_id','238'),(106,41,'_edit_last','1'),(107,41,'_edit_lock','1685548981:1'),(108,14,'_edit_last','2'),(109,14,'importance_intro_title','The importance of solar at home:'),(110,14,'_importance_intro_title','field_646b639ddbbd1'),(111,14,'importance_intro_subtitle','Solar panels provide a range of benefits for homeowners, including financial savings, environmental benefits, and greater energy independence. Raw Energy are here to find the best solution for your needs.'),(112,14,'_importance_intro_subtitle','field_646b63abdbbd2'),(113,14,'importance_copy','<ul>\r\n <li>Proven savings on your energy bills</li>\r\n <li>Reduce your dependency on fossil fuels</li>\r\n <li>Save typically 1.5 tonnes of carbon per year</li>\r\n <li>Add value to your home</li>\r\n <li>Improve your home’s EPC Rating</li>\r\n <li>Make your property easier to mortgage and at a better rate</li>\r\n <li>Harness and use solar energy as you work from home</li>\r\n <li>With the option of battery backup, the ability to use power at the times you need it</li>\r\n <li>Generate your own power to charge an electric vehicle</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-49 size-full\" src=\"http://localhost:8888/raw-energy/wp-content/uploads/2023/05/Group-279.png\" alt=\"\" width=\"665\" height=\"631\" />'),(114,14,'_importance_copy','field_646b63badbbd3'),(115,14,'sidebar_title','Why RAW Energy?'),(116,14,'_sidebar_title','field_646b63cfdbbd4'),(117,14,'selected_projects','a:2:{i:0;s:2:\"38\";i:1;s:2:\"39\";}'),(118,14,'_selected_projects','field_646b6517dbbd7'),(119,49,'_wp_attached_file','2023/05/Group-279.png'),(120,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:665;s:6:\"height\";i:631;s:4:\"file\";s:21:\"2023/05/Group-279.png\";s:8:\"filesize\";i:341685;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Group-279-300x285.png\";s:5:\"width\";i:300;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99889;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Group-279-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29191;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(121,14,'sidebar_copy',''),(122,14,'_sidebar_copy','field_646b7dfeb315c'),(123,14,'sidebar_list_0_list_item','Our expertise is in renewable energy and energy efficiency. This is all we do, and we have been doing it for over 10 years.'),(124,14,'_sidebar_list_0_list_item','field_646b7f912a56d'),(125,14,'sidebar_list_1_list_item','We focus on offering our customers excellent value for money and proving tangible benefits'),(126,14,'_sidebar_list_1_list_item','field_646b7f912a56d'),(127,14,'sidebar_list_2_list_item','Our experience, as well as home solar we work on complex industrial projects and large portfolios of domestic solar rooftops.'),(128,14,'_sidebar_list_2_list_item','field_646b7f912a56d'),(129,14,'sidebar_list_3_list_item','A large part of our business is advising and managing renewable assets for owners and investment funds.'),(130,14,'_sidebar_list_3_list_item','field_646b7f912a56d'),(131,14,'sidebar_list_4_list_item','We have an in-house team to design and fit panels and batteries to your home.'),(132,14,'_sidebar_list_4_list_item','field_646b7f912a56d'),(133,14,'sidebar_list_5_list_item','Our team are MCS Qualified and can provide EPC surveys and certification advising on all energy efficient options.'),(134,14,'_sidebar_list_5_list_item','field_646b7f912a56d'),(135,14,'sidebar_list_6_list_item','We are able to offer solar PV and installation for homes and garages, outbuildings and ground mount.'),(136,14,'_sidebar_list_6_list_item','field_646b7f912a56d'),(137,14,'sidebar_list','7'),(138,14,'_sidebar_list','field_646b7f362a56c'),(139,54,'_edit_last','1'),(140,54,'_edit_lock','1689335088:1'),(141,64,'_edit_last','1'),(142,64,'_edit_lock','1684772641:1'),(143,79,'_edit_last','1'),(144,79,'_edit_lock','1684851150:1'),(145,14,'custom_link_text',''),(146,14,'_custom_link_text','field_646b9680b37d3'),(147,6,'_edit_last','2'),(148,6,'hero_carousel_0_slide_background_type','image'),(149,6,'_hero_carousel_0_slide_background_type','field_646b85a69b754'),(150,6,'hero_carousel_0_slide_image','15'),(151,6,'_hero_carousel_0_slide_image','field_646b85c69b755'),(152,6,'hero_carousel_0_slide_title','Power your home with a 4kw fully installed system from £7,250'),(153,6,'_hero_carousel_0_slide_title','field_646b85ed9b757'),(154,6,'hero_carousel_0_slide_subtitle','Include battery storage for a further £2,740 to maximise the benefits of home solar'),(155,6,'_hero_carousel_0_slide_subtitle','field_646b85f99b758'),(156,6,'hero_carousel','3'),(157,6,'_hero_carousel','field_646b85999b753'),(158,6,'featured_services_title','Domestic & Commercial Savings'),(159,6,'_featured_services_title','field_646b9635ea0a4'),(160,6,'services_title','Raw Energy\'s other services'),(161,6,'_services_title','field_646b964aea0a5'),(162,6,'ratings_title','Don’t just take our word for it'),(163,6,'_ratings_title','field_646b86339b75a'),(164,81,'hero_carousel_0_slide_background_type','image'),(165,81,'_hero_carousel_0_slide_background_type','field_646b85a69b754'),(166,81,'hero_carousel_0_slide_image','15'),(167,81,'_hero_carousel_0_slide_image','field_646b85c69b755'),(168,81,'hero_carousel_0_slide_title','Domestic Solar & Installation'),(169,81,'_hero_carousel_0_slide_title','field_646b85ed9b757'),(170,81,'hero_carousel_0_slide_subtitle','We focus on offering our customers excellent value for money and proving tangible benefits'),(171,81,'_hero_carousel_0_slide_subtitle','field_646b85f99b758'),(172,81,'hero_carousel','1'),(173,81,'_hero_carousel','field_646b85999b753'),(174,81,'featured_services_title','Domestic & Commercial Savings'),(175,81,'_featured_services_title','field_646b9635ea0a4'),(176,81,'services_title','But that’s not all'),(177,81,'_services_title','field_646b964aea0a5'),(178,81,'ratings_title',''),(179,81,'_ratings_title','field_646b86339b75a'),(180,82,'hero_carousel_0_slide_background_type','image'),(181,82,'_hero_carousel_0_slide_background_type','field_646b85a69b754'),(182,82,'hero_carousel_0_slide_image','15'),(183,82,'_hero_carousel_0_slide_image','field_646b85c69b755'),(184,82,'hero_carousel_0_slide_title','Domestic Solar & Installation'),(185,82,'_hero_carousel_0_slide_title','field_646b85ed9b757'),(186,82,'hero_carousel_0_slide_subtitle','We focus on offering our customers excellent value for money and proving tangible benefits'),(187,82,'_hero_carousel_0_slide_subtitle','field_646b85f99b758'),(188,82,'hero_carousel','1'),(189,82,'_hero_carousel','field_646b85999b753'),(190,82,'featured_services_title','Domestic & Commercial Savings'),(191,82,'_featured_services_title','field_646b9635ea0a4'),(192,82,'services_title','But that’s not all'),(193,82,'_services_title','field_646b964aea0a5'),(194,82,'ratings_title','Don’t just take our word for it'),(195,82,'_ratings_title','field_646b86339b75a'),(196,83,'_edit_last','1'),(197,83,'_edit_lock','1684775339:1'),(198,89,'_edit_last','1'),(199,89,'_edit_lock','1684788232:1'),(200,8,'_edit_last','2'),(201,8,'hero_background','230'),(202,8,'_hero_background','field_646bbb6ea0465'),(203,8,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(204,8,'_intro_title','field_646bbb89a0467'),(205,8,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UK\'s demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(206,8,'_intro_copy','field_646bbb91a0468'),(207,8,'sectors_title','Raw Energy work at three scales of renewable generation:'),(208,8,'_sectors_title','field_646bbba4a046a'),(209,8,'sectors_0_sector_image','226'),(210,8,'_sectors_0_sector_image','field_646bbbbba046c'),(211,8,'sectors_0_sector_title','Kilowatts'),(212,8,'_sectors_0_sector_title','field_646bbbd2a046d'),(213,8,'sectors_0_sector_subtitle','(Domestic)'),(214,8,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(215,8,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(216,8,'_sectors_0_sector_copy','field_646bbbe7a046f'),(217,8,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(218,8,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(219,8,'sectors_0_sectors_list_1_list_item','Insulation'),(220,8,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(221,8,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(222,8,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(223,8,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(224,8,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(225,8,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(226,8,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(227,8,'sectors_0_sectors_list','5'),(228,8,'_sectors_0_sectors_list','field_646bbbf5a0470'),(229,8,'sectors','3'),(230,8,'_sectors','field_646bbbb1a046b'),(231,8,'blocks','3'),(232,8,'_blocks','field_646bbc11a0472'),(233,8,'outro_title','Since 2012 Raw has developed, consulted for and facilitated over £100million of investment into renewable energy projects and portfolios.'),(234,8,'_outro_title','field_646bbc4da0477'),(235,110,'hero_background','15'),(236,110,'_hero_background','field_646bbb6ea0465'),(237,110,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(238,110,'_intro_title','field_646bbb89a0467'),(239,110,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UKs demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(240,110,'_intro_copy','field_646bbb91a0468'),(241,110,'sectors_title','Raw Energy work at three scales of renewable generation:'),(242,110,'_sectors_title','field_646bbba4a046a'),(243,110,'sectors_0_sector_image','15'),(244,110,'_sectors_0_sector_image','field_646bbbbba046c'),(245,110,'sectors_0_sector_title','Kilowatts'),(246,110,'_sectors_0_sector_title','field_646bbbd2a046d'),(247,110,'sectors_0_sector_subtitle','(Domestic)'),(248,110,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(249,110,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(250,110,'_sectors_0_sector_copy','field_646bbbe7a046f'),(251,110,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(252,110,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(253,110,'sectors_0_sectors_list_1_list_item','Insulation'),(254,110,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(255,110,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(256,110,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(257,110,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(258,110,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(259,110,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(260,110,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(261,110,'sectors_0_sectors_list','5'),(262,110,'_sectors_0_sectors_list','field_646bbbf5a0470'),(263,110,'sectors','1'),(264,110,'_sectors','field_646bbbb1a046b'),(265,110,'blocks',''),(266,110,'_blocks','field_646bbc11a0472'),(267,110,'outro_title',''),(268,110,'_outro_title','field_646bbc4da0477'),(269,8,'sectors_1_sector_image','227'),(270,8,'_sectors_1_sector_image','field_646bbbbba046c'),(271,8,'sectors_1_sector_title','Hundreds of Kilowatts'),(272,8,'_sectors_1_sector_title','field_646bbbd2a046d'),(273,8,'sectors_1_sector_subtitle','(Commercial)'),(274,8,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(275,8,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(276,8,'_sectors_1_sector_copy','field_646bbbe7a046f'),(277,8,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(278,8,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(279,8,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(280,8,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(281,8,'sectors_1_sectors_list_2_list_item','ESG'),(282,8,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(283,8,'sectors_1_sectors_list_3_list_item','Offsetting '),(284,8,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(285,8,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(286,8,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(287,8,'sectors_1_sectors_list_5_list_item','Conservation'),(288,8,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(289,8,'sectors_1_sectors_list','6'),(290,8,'_sectors_1_sectors_list','field_646bbbf5a0470'),(291,111,'hero_background','15'),(292,111,'_hero_background','field_646bbb6ea0465'),(293,111,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(294,111,'_intro_title','field_646bbb89a0467'),(295,111,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UKs demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(296,111,'_intro_copy','field_646bbb91a0468'),(297,111,'sectors_title','Raw Energy work at three scales of renewable generation:'),(298,111,'_sectors_title','field_646bbba4a046a'),(299,111,'sectors_0_sector_image','15'),(300,111,'_sectors_0_sector_image','field_646bbbbba046c'),(301,111,'sectors_0_sector_title','Kilowatts'),(302,111,'_sectors_0_sector_title','field_646bbbd2a046d'),(303,111,'sectors_0_sector_subtitle','(Domestic)'),(304,111,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(305,111,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(306,111,'_sectors_0_sector_copy','field_646bbbe7a046f'),(307,111,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(308,111,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(309,111,'sectors_0_sectors_list_1_list_item','Insulation'),(310,111,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(311,111,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(312,111,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(313,111,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(314,111,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(315,111,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(316,111,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(317,111,'sectors_0_sectors_list','5'),(318,111,'_sectors_0_sectors_list','field_646bbbf5a0470'),(319,111,'sectors','2'),(320,111,'_sectors','field_646bbbb1a046b'),(321,111,'blocks',''),(322,111,'_blocks','field_646bbc11a0472'),(323,111,'outro_title',''),(324,111,'_outro_title','field_646bbc4da0477'),(325,111,'sectors_1_sector_image','15'),(326,111,'_sectors_1_sector_image','field_646bbbbba046c'),(327,111,'sectors_1_sector_title','Hundreds of Kilowatts'),(328,111,'_sectors_1_sector_title','field_646bbbd2a046d'),(329,111,'sectors_1_sector_subtitle','(Commercial)'),(330,111,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(331,111,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(332,111,'_sectors_1_sector_copy','field_646bbbe7a046f'),(333,111,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(334,111,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(335,111,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(336,111,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(337,111,'sectors_1_sectors_list_2_list_item','ESG'),(338,111,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(339,111,'sectors_1_sectors_list_3_list_item','Offsetting '),(340,111,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(341,111,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(342,111,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(343,111,'sectors_1_sectors_list_5_list_item','Conservation'),(344,111,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(345,111,'sectors_1_sectors_list','6'),(346,111,'_sectors_1_sectors_list','field_646bbbf5a0470'),(347,8,'sectors_2_sector_image','228'),(348,8,'_sectors_2_sector_image','field_646bbbbba046c'),(349,8,'sectors_2_sector_title','Megawatt Scale'),(350,8,'_sectors_2_sector_title','field_646bbbd2a046d'),(351,8,'sectors_2_sector_subtitle','(Utility)'),(352,8,'_sectors_2_sector_subtitle','field_646bbbd9a046e'),(353,8,'sectors_2_sector_copy','Raw Energy develop their own projects at MW scale and leverage their significant experience to consult for others on theirs.'),(354,8,'_sectors_2_sector_copy','field_646bbbe7a046f'),(355,8,'sectors_2_sectors_list_0_list_item','Solar'),(356,8,'_sectors_2_sectors_list_0_list_item','field_646bbbffa0471'),(357,8,'sectors_2_sectors_list_1_list_item','Wind'),(358,8,'_sectors_2_sectors_list_1_list_item','field_646bbbffa0471'),(359,8,'sectors_2_sectors_list_2_list_item','Hydro'),(360,8,'_sectors_2_sectors_list_2_list_item','field_646bbbffa0471'),(361,8,'sectors_2_sectors_list_3_list_item','Battery'),(362,8,'_sectors_2_sectors_list_3_list_item','field_646bbbffa0471'),(363,8,'sectors_2_sectors_list','4'),(364,8,'_sectors_2_sectors_list','field_646bbbf5a0470'),(365,113,'hero_background','15'),(366,113,'_hero_background','field_646bbb6ea0465'),(367,113,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(368,113,'_intro_title','field_646bbb89a0467'),(369,113,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UKs demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(370,113,'_intro_copy','field_646bbb91a0468'),(371,113,'sectors_title','Raw Energy work at three scales of renewable generation:'),(372,113,'_sectors_title','field_646bbba4a046a'),(373,113,'sectors_0_sector_image','15'),(374,113,'_sectors_0_sector_image','field_646bbbbba046c'),(375,113,'sectors_0_sector_title','Kilowatts'),(376,113,'_sectors_0_sector_title','field_646bbbd2a046d'),(377,113,'sectors_0_sector_subtitle','(Domestic)'),(378,113,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(379,113,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(380,113,'_sectors_0_sector_copy','field_646bbbe7a046f'),(381,113,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(382,113,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(383,113,'sectors_0_sectors_list_1_list_item','Insulation'),(384,113,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(385,113,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(386,113,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(387,113,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(388,113,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(389,113,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(390,113,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(391,113,'sectors_0_sectors_list','5'),(392,113,'_sectors_0_sectors_list','field_646bbbf5a0470'),(393,113,'sectors','3'),(394,113,'_sectors','field_646bbbb1a046b'),(395,113,'blocks',''),(396,113,'_blocks','field_646bbc11a0472'),(397,113,'outro_title',''),(398,113,'_outro_title','field_646bbc4da0477'),(399,113,'sectors_1_sector_image','15'),(400,113,'_sectors_1_sector_image','field_646bbbbba046c'),(401,113,'sectors_1_sector_title','Hundreds of Kilowatts'),(402,113,'_sectors_1_sector_title','field_646bbbd2a046d'),(403,113,'sectors_1_sector_subtitle','(Commercial)'),(404,113,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(405,113,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(406,113,'_sectors_1_sector_copy','field_646bbbe7a046f'),(407,113,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(408,113,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(409,113,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(410,113,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(411,113,'sectors_1_sectors_list_2_list_item','ESG'),(412,113,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(413,113,'sectors_1_sectors_list_3_list_item','Offsetting '),(414,113,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(415,113,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(416,113,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(417,113,'sectors_1_sectors_list_5_list_item','Conservation'),(418,113,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(419,113,'sectors_1_sectors_list','6'),(420,113,'_sectors_1_sectors_list','field_646bbbf5a0470'),(421,113,'sectors_2_sector_image','15'),(422,113,'_sectors_2_sector_image','field_646bbbbba046c'),(423,113,'sectors_2_sector_title','Megawatt Scale'),(424,113,'_sectors_2_sector_title','field_646bbbd2a046d'),(425,113,'sectors_2_sector_subtitle','(Utility)'),(426,113,'_sectors_2_sector_subtitle','field_646bbbd9a046e'),(427,113,'sectors_2_sector_copy','Raw Energy develop their own projects at MW scale and leverage their significant experience to consult for others on theirs.'),(428,113,'_sectors_2_sector_copy','field_646bbbe7a046f'),(429,113,'sectors_2_sectors_list_0_list_item','Solar'),(430,113,'_sectors_2_sectors_list_0_list_item','field_646bbbffa0471'),(431,113,'sectors_2_sectors_list_1_list_item','Wind'),(432,113,'_sectors_2_sectors_list_1_list_item','field_646bbbffa0471'),(433,113,'sectors_2_sectors_list_2_list_item','Hydro'),(434,113,'_sectors_2_sectors_list_2_list_item','field_646bbbffa0471'),(435,113,'sectors_2_sectors_list_3_list_item','Battery'),(436,113,'_sectors_2_sectors_list_3_list_item','field_646bbbffa0471'),(437,113,'sectors_2_sectors_list','4'),(438,113,'_sectors_2_sectors_list','field_646bbbf5a0470'),(439,114,'_wp_attached_file','2023/05/shutterstock_178694141.png'),(440,114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:968;s:6:\"height\";i:968;s:4:\"file\";s:34:\"2023/05/shutterstock_178694141.png\";s:8:\"filesize\";i:374540;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"shutterstock_178694141-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165120;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"shutterstock_178694141-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44051;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"shutterstock_178694141-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:986710;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(441,8,'blocks_0_block_title','History'),(442,8,'_blocks_0_block_title','field_646bbc1da0473'),(443,8,'blocks_0_block_copy','Raw Energy has been growing since 2012 and has a dedicated team with close and permanently contracted relationships with excellent providers of legal and technical services.'),(444,8,'_blocks_0_block_copy','field_646bbc23a0474'),(445,8,'blocks_0_block_image','114'),(446,8,'_blocks_0_block_image','field_646bbc30a0475'),(447,115,'hero_background','15'),(448,115,'_hero_background','field_646bbb6ea0465'),(449,115,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(450,115,'_intro_title','field_646bbb89a0467'),(451,115,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UKs demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(452,115,'_intro_copy','field_646bbb91a0468'),(453,115,'sectors_title','Raw Energy work at three scales of renewable generation:'),(454,115,'_sectors_title','field_646bbba4a046a'),(455,115,'sectors_0_sector_image','15'),(456,115,'_sectors_0_sector_image','field_646bbbbba046c'),(457,115,'sectors_0_sector_title','Kilowatts'),(458,115,'_sectors_0_sector_title','field_646bbbd2a046d'),(459,115,'sectors_0_sector_subtitle','(Domestic)'),(460,115,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(461,115,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(462,115,'_sectors_0_sector_copy','field_646bbbe7a046f'),(463,115,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(464,115,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(465,115,'sectors_0_sectors_list_1_list_item','Insulation'),(466,115,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(467,115,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(468,115,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(469,115,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(470,115,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(471,115,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(472,115,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(473,115,'sectors_0_sectors_list','5'),(474,115,'_sectors_0_sectors_list','field_646bbbf5a0470'),(475,115,'sectors','3'),(476,115,'_sectors','field_646bbbb1a046b'),(477,115,'blocks','1'),(478,115,'_blocks','field_646bbc11a0472'),(479,115,'outro_title',''),(480,115,'_outro_title','field_646bbc4da0477'),(481,115,'sectors_1_sector_image','15'),(482,115,'_sectors_1_sector_image','field_646bbbbba046c'),(483,115,'sectors_1_sector_title','Hundreds of Kilowatts'),(484,115,'_sectors_1_sector_title','field_646bbbd2a046d'),(485,115,'sectors_1_sector_subtitle','(Commercial)'),(486,115,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(487,115,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(488,115,'_sectors_1_sector_copy','field_646bbbe7a046f'),(489,115,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(490,115,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(491,115,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(492,115,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(493,115,'sectors_1_sectors_list_2_list_item','ESG'),(494,115,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(495,115,'sectors_1_sectors_list_3_list_item','Offsetting '),(496,115,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(497,115,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(498,115,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(499,115,'sectors_1_sectors_list_5_list_item','Conservation'),(500,115,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(501,115,'sectors_1_sectors_list','6'),(502,115,'_sectors_1_sectors_list','field_646bbbf5a0470'),(503,115,'sectors_2_sector_image','15'),(504,115,'_sectors_2_sector_image','field_646bbbbba046c'),(505,115,'sectors_2_sector_title','Megawatt Scale'),(506,115,'_sectors_2_sector_title','field_646bbbd2a046d'),(507,115,'sectors_2_sector_subtitle','(Utility)'),(508,115,'_sectors_2_sector_subtitle','field_646bbbd9a046e'),(509,115,'sectors_2_sector_copy','Raw Energy develop their own projects at MW scale and leverage their significant experience to consult for others on theirs.'),(510,115,'_sectors_2_sector_copy','field_646bbbe7a046f'),(511,115,'sectors_2_sectors_list_0_list_item','Solar'),(512,115,'_sectors_2_sectors_list_0_list_item','field_646bbbffa0471'),(513,115,'sectors_2_sectors_list_1_list_item','Wind'),(514,115,'_sectors_2_sectors_list_1_list_item','field_646bbbffa0471'),(515,115,'sectors_2_sectors_list_2_list_item','Hydro'),(516,115,'_sectors_2_sectors_list_2_list_item','field_646bbbffa0471'),(517,115,'sectors_2_sectors_list_3_list_item','Battery'),(518,115,'_sectors_2_sectors_list_3_list_item','field_646bbbffa0471'),(519,115,'sectors_2_sectors_list','4'),(520,115,'_sectors_2_sectors_list','field_646bbbf5a0470'),(521,115,'blocks_0_block_title','History'),(522,115,'_blocks_0_block_title','field_646bbc1da0473'),(523,115,'blocks_0_block_copy','Raw Energy has been growing since 2012 and has a dedicated team with close and permanently contracted relationships with excellent providers of legal and technical services.'),(524,115,'_blocks_0_block_copy','field_646bbc23a0474'),(525,115,'blocks_0_block_image','114'),(526,115,'_blocks_0_block_image','field_646bbc30a0475'),(527,116,'_wp_attached_file','2023/05/Screenshot-2023-05-10-at-08.11.01.png'),(528,116,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:968;s:6:\"height\";i:968;s:4:\"file\";s:45:\"2023/05/Screenshot-2023-05-10-at-08.11.01.png\";s:8:\"filesize\";i:272577;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-05-10-at-08.11.01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103681;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-05-10-at-08.11.01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28374;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-05-10-at-08.11.01-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:591690;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(529,8,'blocks_1_block_title','Purpose'),(530,8,'_blocks_1_block_title','field_646bbc1da0473'),(531,8,'blocks_1_block_copy','Raw Energy was founded to bridge the gap between renewable energy projects and investors. Due to previous experience of both developing and financing these projects Raw Energy has a rare ability to see both sides of a transaction as well as the experience to understand its full transactional requirements.'),(532,8,'_blocks_1_block_copy','field_646bbc23a0474'),(533,8,'blocks_1_block_image','264'),(534,8,'_blocks_1_block_image','field_646bbc30a0475'),(535,117,'hero_background','15'),(536,117,'_hero_background','field_646bbb6ea0465'),(537,117,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(538,117,'_intro_title','field_646bbb89a0467'),(539,117,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UKs demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(540,117,'_intro_copy','field_646bbb91a0468'),(541,117,'sectors_title','Raw Energy work at three scales of renewable generation:'),(542,117,'_sectors_title','field_646bbba4a046a'),(543,117,'sectors_0_sector_image','15'),(544,117,'_sectors_0_sector_image','field_646bbbbba046c'),(545,117,'sectors_0_sector_title','Kilowatts'),(546,117,'_sectors_0_sector_title','field_646bbbd2a046d'),(547,117,'sectors_0_sector_subtitle','(Domestic)'),(548,117,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(549,117,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(550,117,'_sectors_0_sector_copy','field_646bbbe7a046f'),(551,117,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(552,117,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(553,117,'sectors_0_sectors_list_1_list_item','Insulation'),(554,117,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(555,117,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(556,117,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(557,117,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(558,117,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(559,117,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(560,117,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(561,117,'sectors_0_sectors_list','5'),(562,117,'_sectors_0_sectors_list','field_646bbbf5a0470'),(563,117,'sectors','3'),(564,117,'_sectors','field_646bbbb1a046b'),(565,117,'blocks','2'),(566,117,'_blocks','field_646bbc11a0472'),(567,117,'outro_title',''),(568,117,'_outro_title','field_646bbc4da0477'),(569,117,'sectors_1_sector_image','15'),(570,117,'_sectors_1_sector_image','field_646bbbbba046c'),(571,117,'sectors_1_sector_title','Hundreds of Kilowatts'),(572,117,'_sectors_1_sector_title','field_646bbbd2a046d'),(573,117,'sectors_1_sector_subtitle','(Commercial)'),(574,117,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(575,117,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(576,117,'_sectors_1_sector_copy','field_646bbbe7a046f'),(577,117,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(578,117,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(579,117,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(580,117,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(581,117,'sectors_1_sectors_list_2_list_item','ESG'),(582,117,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(583,117,'sectors_1_sectors_list_3_list_item','Offsetting '),(584,117,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(585,117,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(586,117,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(587,117,'sectors_1_sectors_list_5_list_item','Conservation'),(588,117,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(589,117,'sectors_1_sectors_list','6'),(590,117,'_sectors_1_sectors_list','field_646bbbf5a0470'),(591,117,'sectors_2_sector_image','15'),(592,117,'_sectors_2_sector_image','field_646bbbbba046c'),(593,117,'sectors_2_sector_title','Megawatt Scale'),(594,117,'_sectors_2_sector_title','field_646bbbd2a046d'),(595,117,'sectors_2_sector_subtitle','(Utility)'),(596,117,'_sectors_2_sector_subtitle','field_646bbbd9a046e'),(597,117,'sectors_2_sector_copy','Raw Energy develop their own projects at MW scale and leverage their significant experience to consult for others on theirs.'),(598,117,'_sectors_2_sector_copy','field_646bbbe7a046f'),(599,117,'sectors_2_sectors_list_0_list_item','Solar'),(600,117,'_sectors_2_sectors_list_0_list_item','field_646bbbffa0471'),(601,117,'sectors_2_sectors_list_1_list_item','Wind'),(602,117,'_sectors_2_sectors_list_1_list_item','field_646bbbffa0471'),(603,117,'sectors_2_sectors_list_2_list_item','Hydro'),(604,117,'_sectors_2_sectors_list_2_list_item','field_646bbbffa0471'),(605,117,'sectors_2_sectors_list_3_list_item','Battery'),(606,117,'_sectors_2_sectors_list_3_list_item','field_646bbbffa0471'),(607,117,'sectors_2_sectors_list','4'),(608,117,'_sectors_2_sectors_list','field_646bbbf5a0470'),(609,117,'blocks_0_block_title','History'),(610,117,'_blocks_0_block_title','field_646bbc1da0473'),(611,117,'blocks_0_block_copy','Raw Energy has been growing since 2012 and has a dedicated team with close and permanently contracted relationships with excellent providers of legal and technical services.'),(612,117,'_blocks_0_block_copy','field_646bbc23a0474'),(613,117,'blocks_0_block_image','114'),(614,117,'_blocks_0_block_image','field_646bbc30a0475'),(615,117,'blocks_1_block_title','Purpose'),(616,117,'_blocks_1_block_title','field_646bbc1da0473'),(617,117,'blocks_1_block_copy','Raw Energy was founded to bridge the gap between renewable energy projects and investors. Due to previous experience of both developing and financing these projects Raw Energy has a rare ability to see both sides of a transaction as well as the experience to understand its full transactional requirements.'),(618,117,'_blocks_1_block_copy','field_646bbc23a0474'),(619,117,'blocks_1_block_image','116'),(620,117,'_blocks_1_block_image','field_646bbc30a0475'),(621,118,'_wp_attached_file','2023/05/53457355-0-image-a-7_1643315299161.png'),(622,118,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:968;s:6:\"height\";i:968;s:4:\"file\";s:46:\"2023/05/53457355-0-image-a-7_1643315299161.png\";s:8:\"filesize\";i:570423;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"53457355-0-image-a-7_1643315299161-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194515;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"53457355-0-image-a-7_1643315299161-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50455;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"53457355-0-image-a-7_1643315299161-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1190075;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(623,8,'blocks_2_block_title','Capability'),(624,8,'_blocks_2_block_title','field_646bbc1da0473'),(625,8,'blocks_2_block_copy','A strong network of institutional investors allows Raw Energy to match projects with suitable investors and then provide the transactional skills to close the investment adding value on both sides.\r\n\r\nThe company still strives to develop their own projects in sectors where long-term opportunities have been identified.'),(626,8,'_blocks_2_block_copy','field_646bbc23a0474'),(627,8,'blocks_2_block_image','118'),(628,8,'_blocks_2_block_image','field_646bbc30a0475'),(629,119,'hero_background','15'),(630,119,'_hero_background','field_646bbb6ea0465'),(631,119,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(632,119,'_intro_title','field_646bbb89a0467'),(633,119,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UKs demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(634,119,'_intro_copy','field_646bbb91a0468'),(635,119,'sectors_title','Raw Energy work at three scales of renewable generation:'),(636,119,'_sectors_title','field_646bbba4a046a'),(637,119,'sectors_0_sector_image','15'),(638,119,'_sectors_0_sector_image','field_646bbbbba046c'),(639,119,'sectors_0_sector_title','Kilowatts'),(640,119,'_sectors_0_sector_title','field_646bbbd2a046d'),(641,119,'sectors_0_sector_subtitle','(Domestic)'),(642,119,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(643,119,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(644,119,'_sectors_0_sector_copy','field_646bbbe7a046f'),(645,119,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(646,119,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(647,119,'sectors_0_sectors_list_1_list_item','Insulation'),(648,119,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(649,119,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(650,119,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(651,119,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(652,119,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(653,119,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(654,119,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(655,119,'sectors_0_sectors_list','5'),(656,119,'_sectors_0_sectors_list','field_646bbbf5a0470'),(657,119,'sectors','3'),(658,119,'_sectors','field_646bbbb1a046b'),(659,119,'blocks','3'),(660,119,'_blocks','field_646bbc11a0472'),(661,119,'outro_title','Since 2012 Raw has developed, consulted for and facilitated over £100million of investment into renewable energy projects and portfolios.'),(662,119,'_outro_title','field_646bbc4da0477'),(663,119,'sectors_1_sector_image','15'),(664,119,'_sectors_1_sector_image','field_646bbbbba046c'),(665,119,'sectors_1_sector_title','Hundreds of Kilowatts'),(666,119,'_sectors_1_sector_title','field_646bbbd2a046d'),(667,119,'sectors_1_sector_subtitle','(Commercial)'),(668,119,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(669,119,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(670,119,'_sectors_1_sector_copy','field_646bbbe7a046f'),(671,119,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(672,119,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(673,119,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(674,119,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(675,119,'sectors_1_sectors_list_2_list_item','ESG'),(676,119,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(677,119,'sectors_1_sectors_list_3_list_item','Offsetting '),(678,119,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(679,119,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(680,119,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(681,119,'sectors_1_sectors_list_5_list_item','Conservation'),(682,119,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(683,119,'sectors_1_sectors_list','6'),(684,119,'_sectors_1_sectors_list','field_646bbbf5a0470'),(685,119,'sectors_2_sector_image','15'),(686,119,'_sectors_2_sector_image','field_646bbbbba046c'),(687,119,'sectors_2_sector_title','Megawatt Scale'),(688,119,'_sectors_2_sector_title','field_646bbbd2a046d'),(689,119,'sectors_2_sector_subtitle','(Utility)'),(690,119,'_sectors_2_sector_subtitle','field_646bbbd9a046e'),(691,119,'sectors_2_sector_copy','Raw Energy develop their own projects at MW scale and leverage their significant experience to consult for others on theirs.'),(692,119,'_sectors_2_sector_copy','field_646bbbe7a046f'),(693,119,'sectors_2_sectors_list_0_list_item','Solar'),(694,119,'_sectors_2_sectors_list_0_list_item','field_646bbbffa0471'),(695,119,'sectors_2_sectors_list_1_list_item','Wind'),(696,119,'_sectors_2_sectors_list_1_list_item','field_646bbbffa0471'),(697,119,'sectors_2_sectors_list_2_list_item','Hydro'),(698,119,'_sectors_2_sectors_list_2_list_item','field_646bbbffa0471'),(699,119,'sectors_2_sectors_list_3_list_item','Battery'),(700,119,'_sectors_2_sectors_list_3_list_item','field_646bbbffa0471'),(701,119,'sectors_2_sectors_list','4'),(702,119,'_sectors_2_sectors_list','field_646bbbf5a0470'),(703,119,'blocks_0_block_title','History'),(704,119,'_blocks_0_block_title','field_646bbc1da0473'),(705,119,'blocks_0_block_copy','Raw Energy has been growing since 2012 and has a dedicated team with close and permanently contracted relationships with excellent providers of legal and technical services.'),(706,119,'_blocks_0_block_copy','field_646bbc23a0474'),(707,119,'blocks_0_block_image','114'),(708,119,'_blocks_0_block_image','field_646bbc30a0475'),(709,119,'blocks_1_block_title','Purpose'),(710,119,'_blocks_1_block_title','field_646bbc1da0473'),(711,119,'blocks_1_block_copy','Raw Energy was founded to bridge the gap between renewable energy projects and investors. Due to previous experience of both developing and financing these projects Raw Energy has a rare ability to see both sides of a transaction as well as the experience to understand its full transactional requirements.'),(712,119,'_blocks_1_block_copy','field_646bbc23a0474'),(713,119,'blocks_1_block_image','116'),(714,119,'_blocks_1_block_image','field_646bbc30a0475'),(715,119,'blocks_2_block_title','Capability'),(716,119,'_blocks_2_block_title','field_646bbc1da0473'),(717,119,'blocks_2_block_copy','A strong network of institutional investors allows Raw Energy to match projects with suitable investors and then provide the transactional skills to close the investment adding value on both sides. The company still strives to develop their own projects in sectors where long-term opportunities have been identified.'),(718,119,'_blocks_2_block_copy','field_646bbc23a0474'),(719,119,'blocks_2_block_image','118'),(720,119,'_blocks_2_block_image','field_646bbc30a0475'),(721,120,'_edit_last','1'),(722,120,'_edit_lock','1689334102:1'),(723,38,'_edit_last','1'),(724,38,'intro','Greenfield biomethane development'),(725,38,'_intro','field_646bdab61db3e'),(726,38,'copy','In 2018 Raw successfully developed a greenfield site into a £12million biomethane injection facility, with an operational capacity of 450 scmh. This project has been sold to a UK investor.\r\n'),(727,38,'_copy','field_646bdad41db3f'),(728,38,'stats_0_stat',''),(729,38,'_stats_0_stat','field_646bdaf51db41'),(730,38,'stats_1_stat',''),(731,38,'_stats_1_stat','field_646bdaf51db41'),(732,38,'stats_2_stat',''),(733,38,'_stats_2_stat','field_646bdaf51db41'),(734,38,'stats','3'),(735,38,'_stats','field_646bdaec1db40'),(736,38,'images_0_image','128'),(737,38,'_images_0_image','field_646bdb041db43'),(738,38,'images_1_image',''),(739,38,'_images_1_image','field_646bdb041db43'),(740,38,'images','2'),(741,38,'_images','field_646bdb041db42'),(742,127,'_wp_attached_file','2023/05/AD-2.png'),(743,127,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:542;s:6:\"height\";i:667;s:4:\"file\";s:16:\"2023/05/AD-2.png\";s:8:\"filesize\";i:131841;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"AD-2-244x300.png\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"AD-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38976;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(744,128,'_wp_attached_file','2023/05/AD.png'),(745,128,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1125;s:6:\"height\";i:667;s:4:\"file\";s:14:\"2023/05/AD.png\";s:8:\"filesize\";i:273804;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"AD-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90128;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"AD-1024x607.png\";s:5:\"width\";i:1024;s:6:\"height\";i:607;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:960359;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"AD-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38447;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"AD-768x455.png\";s:5:\"width\";i:768;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:557417;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(746,129,'_wp_attached_file','2023/05/Biomass.png'),(747,129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:542;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2023/05/Biomass.png\";s:8:\"filesize\";i:196690;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Biomass-244x300.png\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Biomass-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50188;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(748,130,'_wp_attached_file','2023/05/shutterstock_998717451.png'),(749,130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1125;s:6:\"height\";i:667;s:4:\"file\";s:34:\"2023/05/shutterstock_998717451.png\";s:8:\"filesize\";i:466925;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"shutterstock_998717451-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137222;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"shutterstock_998717451-1024x607.png\";s:5:\"width\";i:1024;s:6:\"height\";i:607;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1379350;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"shutterstock_998717451-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59586;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"shutterstock_998717451-768x455.png\";s:5:\"width\";i:768;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:816668;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(754,131,'_edit_last','1'),(755,131,'_edit_lock','1684793325:1'),(756,10,'_edit_last','3'),(757,10,'hero_title','Our Team'),(758,10,'_hero_title','field_646be59d7838d'),(759,10,'hero_copy','We are a team of <strong>enthusiastic, likeminded, and efficient people</strong>, here to work with those who share our values.'),(760,10,'_hero_copy','field_646be5a37838e'),(761,135,'hero_title','Our Team'),(762,135,'_hero_title','field_646be59d7838d'),(763,135,'hero_copy','We are a team of <strong>enthusiastic, likeminded, and efficient people</strong>, here to partner with those who share our values and our desire to make the world better for all.'),(764,135,'_hero_copy','field_646be5a37838e'),(765,10,'team_members_0_team_member_photo','223'),(766,10,'_team_members_0_team_member_photo','field_646be75714819'),(767,10,'team_members_0_team_member_name','Stuart Homewood'),(768,10,'_team_members_0_team_member_name','field_646be7621481a'),(769,10,'team_members_0_team_member_title','CEO'),(770,10,'_team_members_0_team_member_title','field_646be76c1481b'),(771,10,'team_members_0_team_member_bio','Following graduation from the Royal Agricultural College in Cirencester, Stuart joined Low Carbon in 2010.\r\n\r\nDuring the four and a half years that followed, he developed 185MW (900 acres) of solar PV, comprising of over 20 schemes from Cornwall to Lincolnshire, including the UK’s first three 5MW solar farms.\r\n\r\nStuart joined Raw Energy in 2015.\r\n\r\nSince then, Stuart has worked across all forms of renewable technology and has been through many project finance and re-financing rounds. He spends his time advising and working on various M&A transactions, successfully representing developers and asset owners with buyers from the UK and overseas. \r\n\r\nIn 2018 Stuart co-founded Raw Infrastructure (trading as Raw Charging) with Will Watts and following significant growth, sold the company to Gulf UK in 2021. In the same year Stuart closed the financing on Raw Energy’s own biomethane plant with the Parisian fund Swen Capital and built it with HoSt Bioenergy Systems. \r\n\r\nAlongside his work at Raw Energy, Stuart is also CEO of the property company Albion Quarters. '),(772,10,'_team_members_0_team_member_bio','field_646be7781481c'),(773,10,'team_members','12'),(774,10,'_team_members','field_646be74314818'),(775,10,'join_our_team_title','Are you interested in joining our team?'),(776,10,'_join_our_team_title','field_646be79e1481e'),(777,10,'join_our_team_vacancies','Although we don\'t have any vacancies right now, we would love to hear from you. Please drop us an email with your CV'),(778,10,'_join_our_team_vacancies','field_646be7b01481f'),(779,10,'join_our_team_perks_0_single_perk','Want to make a difference in our evolving world?'),(780,10,'_join_our_team_perks_0_single_perk','field_646be7d514821'),(781,10,'join_our_team_perks_1_single_perk','Want to tackle climate change?'),(782,10,'_join_our_team_perks_1_single_perk','field_646be7d514821'),(783,10,'join_our_team_perks_2_single_perk','Want to work for a green energy company?'),(784,10,'_join_our_team_perks_2_single_perk','field_646be7d514821'),(785,10,'join_our_team_perks_3_single_perk','Have an interest in any of our services from anaerobic digestion to wind energy?'),(786,10,'_join_our_team_perks_3_single_perk','field_646be7d514821'),(787,10,'join_our_team_perks','4'),(788,10,'_join_our_team_perks','field_646be7c514820'),(789,147,'hero_title','Our Team'),(790,147,'_hero_title','field_646be59d7838d'),(791,147,'hero_copy','We are a team of <strong>enthusiastic, likeminded, and efficient people</strong>, here to partner with those who share our values and our desire to make the world better for all.'),(792,147,'_hero_copy','field_646be5a37838e'),(793,147,'team_members_0_team_member_photo','116'),(794,147,'_team_members_0_team_member_photo','field_646be75714819'),(795,147,'team_members_0_team_member_name','William Watts'),(796,147,'_team_members_0_team_member_name','field_646be7621481a'),(797,147,'team_members_0_team_member_title','Finance'),(798,147,'_team_members_0_team_member_title','field_646be76c1481b'),(799,147,'team_members_0_team_member_bio','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean maximus sapien non risus blandit rutrum. Mauris porta, erat a gravida consequat, augue elit maximus nulla, vel vehicula ex justo non lacus. Fusce bibendum at justo ac euismod. \r\n\r\nPellentesque et fermentum felis. Praesent lectus risus, dapibus sed urna eu, euismod rutrum lorem. Pellentesque ipsum nibh, pellentesque sit amet ipsum a, cursus ornare risus. Praesent et venenatis tortor.\r\n\r\nMaecenas luctus mauris in tellus dignissim, sit amet commodo nisl lacinia. Nam scelerisque, magna in mattis semper, libero ipsum imperdiet nisi, sit amet vulputate purus elit ac augue.'),(800,147,'_team_members_0_team_member_bio','field_646be7781481c'),(801,147,'team_members','1'),(802,147,'_team_members','field_646be74314818'),(803,147,'join_our_team_title','Are you interested in joining our team?'),(804,147,'_join_our_team_title','field_646be79e1481e'),(805,147,'join_our_team_vacancies','Although we don\'t have any vacancies right now, we would love to hear from you. Please drop us an email with your CV'),(806,147,'_join_our_team_vacancies','field_646be7b01481f'),(807,147,'join_our_team_perks_0_single_perk','Want to make a difference in our evolving world?'),(808,147,'_join_our_team_perks_0_single_perk','field_646be7d514821'),(809,147,'join_our_team_perks_1_single_perk','Want to tackle climate change?'),(810,147,'_join_our_team_perks_1_single_perk','field_646be7d514821'),(811,147,'join_our_team_perks_2_single_perk','Want to work for a green energy company?'),(812,147,'_join_our_team_perks_2_single_perk','field_646be7d514821'),(813,147,'join_our_team_perks_3_single_perk','Have an interest in any of our services from anaerobic digestion to wind energy?'),(814,147,'_join_our_team_perks_3_single_perk','field_646be7d514821'),(815,147,'join_our_team_perks','4'),(816,147,'_join_our_team_perks','field_646be7c514820'),(817,10,'team_members_1_team_member_photo','219'),(818,10,'_team_members_1_team_member_photo','field_646be75714819'),(819,10,'team_members_1_team_member_name','Harriet Burrell-Knipe'),(820,10,'_team_members_1_team_member_name','field_646be7621481a'),(821,10,'team_members_1_team_member_title',' Project Delivery'),(822,10,'_team_members_1_team_member_title','field_646be76c1481b'),(823,10,'team_members_1_team_member_bio','Harriet joined Raw Autumn 2015 as Head of Project Delivery following 3 years with Inazin where she met Stuart.\r\n\r\nWhilst at Inazin she had a dual role of Project Coordinator and Grid Manager involved with the development of 173MW. \r\n\r\nHarriet project coordinates large-scale solar projects through development and due diligence, ensuring clean & organised paper projects. As Grid Manager she successfully builds relationships with Network Operators in both gas and electricity and has submitted 1000s of grid applications.'),(824,10,'_team_members_1_team_member_bio','field_646be7781481c'),(825,10,'team_members_2_team_member_photo','224'),(826,10,'_team_members_2_team_member_photo','field_646be75714819'),(827,10,'team_members_2_team_member_name','William Watts'),(828,10,'_team_members_2_team_member_name','field_646be7621481a'),(829,10,'team_members_2_team_member_title',''),(830,10,'_team_members_2_team_member_title','field_646be76c1481b'),(831,10,'team_members_2_team_member_bio','Founding member of Rabobank’s Renewables Finance Department, where he was Global Head of Solar investment. William was responsible for Rabo’s involvement in more than €1 Bio worth of Solar installations. He also managed transactions in Wind, Biofuels and Biomass.\r\n\r\nWilliam founded the Low Carbon Group, one of the largest developers of UK Solar installations and now successful fund manager, where he met Stuart.\r\n\r\nWilliam founded Raw in 2012 with the intention of making a diverse business group that addresses the pressing resource and sustainability problems of the 21st century in an ethical manner.'),(832,10,'_team_members_2_team_member_bio','field_646be7781481c'),(833,10,'team_members_3_team_member_photo','216'),(834,10,'_team_members_3_team_member_photo','field_646be75714819'),(835,10,'team_members_3_team_member_name','Robert Lamble'),(836,10,'_team_members_3_team_member_name','field_646be7621481a'),(837,10,'team_members_3_team_member_title','Consultant'),(838,10,'_team_members_3_team_member_title','field_646be76c1481b'),(839,10,'team_members_3_team_member_bio','Robert joined Raw Energy back in spring of 2022 after studying land management at the Royal Agricultural University. It was during his degree that he developed a key interest in renewable energy. Robert is one of the consultants here at Raw with a particular focus on Solar PV installation and portfolio management across both residential and commercial property. \r\n\r\n'),(840,10,'_team_members_3_team_member_bio','field_646be7781481c'),(841,10,'team_members_4_team_member_photo','242'),(842,10,'_team_members_4_team_member_photo','field_646be75714819'),(843,10,'team_members_4_team_member_name','Sika'),(844,10,'_team_members_4_team_member_name','field_646be7621481a'),(845,10,'team_members_4_team_member_title','Office dog '),(846,10,'_team_members_4_team_member_title','field_646be76c1481b'),(847,10,'team_members_4_team_member_bio','The final member of the team is Sika, our very own office dog. Bedlington whippets are capable of up to thirty-five miles per hour, but you will rarely encounter him hitting these heady speeds in the office. He is chiefly responsible for taking lengthy naps and whilst he may not be the most productive member of the team, he certainly succeeds in keeping up morale with aplomb!\r\n'),(848,10,'_team_members_4_team_member_bio','field_646be7781481c'),(849,148,'hero_title','Our Team'),(850,148,'_hero_title','field_646be59d7838d'),(851,148,'hero_copy','We are a team of <strong>enthusiastic, likeminded, and efficient people</strong>, here to partner with those who share our values and our desire to make the world better for all.'),(852,148,'_hero_copy','field_646be5a37838e'),(853,148,'team_members_0_team_member_photo','116'),(854,148,'_team_members_0_team_member_photo','field_646be75714819'),(855,148,'team_members_0_team_member_name','William Watts'),(856,148,'_team_members_0_team_member_name','field_646be7621481a'),(857,148,'team_members_0_team_member_title','Finance'),(858,148,'_team_members_0_team_member_title','field_646be76c1481b'),(859,148,'team_members_0_team_member_bio','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean maximus sapien non risus blandit rutrum. Mauris porta, erat a gravida consequat, augue elit maximus nulla, vel vehicula ex justo non lacus. Fusce bibendum at justo ac euismod. \r\n\r\nPellentesque et fermentum felis. Praesent lectus risus, dapibus sed urna eu, euismod rutrum lorem. Pellentesque ipsum nibh, pellentesque sit amet ipsum a, cursus ornare risus. Praesent et venenatis tortor.\r\n\r\nMaecenas luctus mauris in tellus dignissim, sit amet commodo nisl lacinia. Nam scelerisque, magna in mattis semper, libero ipsum imperdiet nisi, sit amet vulputate purus elit ac augue.'),(860,148,'_team_members_0_team_member_bio','field_646be7781481c'),(861,148,'team_members','5'),(862,148,'_team_members','field_646be74314818'),(863,148,'join_our_team_title','Are you interested in joining our team?'),(864,148,'_join_our_team_title','field_646be79e1481e'),(865,148,'join_our_team_vacancies','Although we don\'t have any vacancies right now, we would love to hear from you. Please drop us an email with your CV'),(866,148,'_join_our_team_vacancies','field_646be7b01481f'),(867,148,'join_our_team_perks_0_single_perk','Want to make a difference in our evolving world?'),(868,148,'_join_our_team_perks_0_single_perk','field_646be7d514821'),(869,148,'join_our_team_perks_1_single_perk','Want to tackle climate change?'),(870,148,'_join_our_team_perks_1_single_perk','field_646be7d514821'),(871,148,'join_our_team_perks_2_single_perk','Want to work for a green energy company?'),(872,148,'_join_our_team_perks_2_single_perk','field_646be7d514821'),(873,148,'join_our_team_perks_3_single_perk','Have an interest in any of our services from anaerobic digestion to wind energy?'),(874,148,'_join_our_team_perks_3_single_perk','field_646be7d514821'),(875,148,'join_our_team_perks','4'),(876,148,'_join_our_team_perks','field_646be7c514820'),(877,148,'team_members_1_team_member_photo','116'),(878,148,'_team_members_1_team_member_photo','field_646be75714819'),(879,148,'team_members_1_team_member_name','William Watts'),(880,148,'_team_members_1_team_member_name','field_646be7621481a'),(881,148,'team_members_1_team_member_title','Finance'),(882,148,'_team_members_1_team_member_title','field_646be76c1481b'),(883,148,'team_members_1_team_member_bio','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean maximus sapien non risus blandit rutrum. Mauris porta, erat a gravida consequat, augue elit maximus nulla, vel vehicula ex justo non lacus. Fusce bibendum at justo ac euismod. \r\n\r\nPellentesque et fermentum felis. Praesent lectus risus, dapibus sed urna eu, euismod rutrum lorem. Pellentesque ipsum nibh, pellentesque sit amet ipsum a, cursus ornare risus. Praesent et venenatis tortor.\r\n\r\nMaecenas luctus mauris in tellus dignissim, sit amet commodo nisl lacinia. Nam scelerisque, magna in mattis semper, libero ipsum imperdiet nisi, sit amet vulputate purus elit ac augue.'),(884,148,'_team_members_1_team_member_bio','field_646be7781481c'),(885,148,'team_members_2_team_member_photo','116'),(886,148,'_team_members_2_team_member_photo','field_646be75714819'),(887,148,'team_members_2_team_member_name','William Watts'),(888,148,'_team_members_2_team_member_name','field_646be7621481a'),(889,148,'team_members_2_team_member_title','Finance'),(890,148,'_team_members_2_team_member_title','field_646be76c1481b'),(891,148,'team_members_2_team_member_bio','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean maximus sapien non risus blandit rutrum. Mauris porta, erat a gravida consequat, augue elit maximus nulla, vel vehicula ex justo non lacus. Fusce bibendum at justo ac euismod. \r\n\r\nPellentesque et fermentum felis. Praesent lectus risus, dapibus sed urna eu, euismod rutrum lorem. Pellentesque ipsum nibh, pellentesque sit amet ipsum a, cursus ornare risus. Praesent et venenatis tortor.\r\n\r\nMaecenas luctus mauris in tellus dignissim, sit amet commodo nisl lacinia. Nam scelerisque, magna in mattis semper, libero ipsum imperdiet nisi, sit amet vulputate purus elit ac augue.'),(892,148,'_team_members_2_team_member_bio','field_646be7781481c'),(893,148,'team_members_3_team_member_photo','116'),(894,148,'_team_members_3_team_member_photo','field_646be75714819'),(895,148,'team_members_3_team_member_name','William Watts'),(896,148,'_team_members_3_team_member_name','field_646be7621481a'),(897,148,'team_members_3_team_member_title','Finance'),(898,148,'_team_members_3_team_member_title','field_646be76c1481b'),(899,148,'team_members_3_team_member_bio','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean maximus sapien non risus blandit rutrum. Mauris porta, erat a gravida consequat, augue elit maximus nulla, vel vehicula ex justo non lacus. Fusce bibendum at justo ac euismod. \r\n\r\nPellentesque et fermentum felis. Praesent lectus risus, dapibus sed urna eu, euismod rutrum lorem. Pellentesque ipsum nibh, pellentesque sit amet ipsum a, cursus ornare risus. Praesent et venenatis tortor.\r\n\r\nMaecenas luctus mauris in tellus dignissim, sit amet commodo nisl lacinia. Nam scelerisque, magna in mattis semper, libero ipsum imperdiet nisi, sit amet vulputate purus elit ac augue.'),(900,148,'_team_members_3_team_member_bio','field_646be7781481c'),(901,148,'team_members_4_team_member_photo','116'),(902,148,'_team_members_4_team_member_photo','field_646be75714819'),(903,148,'team_members_4_team_member_name','William Watts'),(904,148,'_team_members_4_team_member_name','field_646be7621481a'),(905,148,'team_members_4_team_member_title','Finance'),(906,148,'_team_members_4_team_member_title','field_646be76c1481b'),(907,148,'team_members_4_team_member_bio','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean maximus sapien non risus blandit rutrum. Mauris porta, erat a gravida consequat, augue elit maximus nulla, vel vehicula ex justo non lacus. Fusce bibendum at justo ac euismod. \r\n\r\nPellentesque et fermentum felis. Praesent lectus risus, dapibus sed urna eu, euismod rutrum lorem. Pellentesque ipsum nibh, pellentesque sit amet ipsum a, cursus ornare risus. Praesent et venenatis tortor.\r\n\r\nMaecenas luctus mauris in tellus dignissim, sit amet commodo nisl lacinia. Nam scelerisque, magna in mattis semper, libero ipsum imperdiet nisi, sit amet vulputate purus elit ac augue.'),(908,148,'_team_members_4_team_member_bio','field_646be7781481c'),(909,149,'_edit_last','1'),(910,149,'_edit_lock','1684795350:1'),(911,12,'_edit_last','1'),(912,12,'hero_title','Contact'),(913,12,'_hero_title','field_646bee9e3e1ca'),(914,12,'contact_copy','Please don’t hesitate to contact us about:\r\n<ul>\r\n <li>Renewable asset funding</li>\r\n <li>Technical consultancy</li>\r\n <li>Asset optimisation</li>\r\n <li>Land and project development</li>\r\n</ul>'),(915,12,'_contact_copy','field_646beea53e1cb'),(916,153,'hero_title','Contact'),(917,153,'_hero_title','field_646bee9e3e1ca'),(918,153,'contact_copy','Please don’t hesitate to contact us about:\r\n<ul>\r\n <li>Renewable asset funding</li>\r\n <li>Technical consultancy</li>\r\n <li>Asset optimisation</li>\r\n <li>Land and project development</li>\r\n</ul>'),(919,153,'_contact_copy','field_646beea53e1cb'),(920,12,'location','a:13:{s:7:\"address\";s:53:\"Stroud Road, Cirencester, Gloucestershire GL7 6JN, UK\";s:3:\"lat\";d:51.7113192;s:3:\"lng\";d:-1.9872743;s:4:\"zoom\";i:14;s:8:\"place_id\";s:112:\"EiJTdHJvdWQgUmQsIENpcmVuY2VzdGVyIEdMNyA2Sk4sIFVLIi4qLAoUChIJWXM1H14UcUgRG_gsW4pLAgcSFAoSCVeeEAETFXFIEcsaAFTlllaR\";s:4:\"name\";s:11:\"Stroud Road\";s:11:\"street_name\";s:11:\"Stroud Road\";s:17:\"street_name_short\";s:9:\"Stroud Rd\";s:4:\"city\";s:11:\"Cirencester\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"GL7 6JN\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(921,12,'_location','field_646bef7321c28'),(922,156,'hero_title','Contact'),(923,156,'_hero_title','field_646bee9e3e1ca'),(924,156,'contact_copy','Please don’t hesitate to contact us about:\r\n<ul>\r\n <li>Renewable asset funding</li>\r\n <li>Technical consultancy</li>\r\n <li>Asset optimisation</li>\r\n <li>Land and project development</li>\r\n</ul>'),(925,156,'_contact_copy','field_646beea53e1cb'),(926,156,'location','a:13:{s:7:\"address\";s:53:\"Stroud Road, Cirencester, Gloucestershire GL7 6JN, UK\";s:3:\"lat\";d:51.7113192;s:3:\"lng\";d:-1.9872743;s:4:\"zoom\";i:14;s:8:\"place_id\";s:112:\"EiJTdHJvdWQgUmQsIENpcmVuY2VzdGVyIEdMNyA2Sk4sIFVLIi4qLAoUChIJWXM1H14UcUgRG_gsW4pLAgcSFAoSCVeeEAETFXFIEcsaAFTlllaR\";s:4:\"name\";s:11:\"Stroud Road\";s:11:\"street_name\";s:11:\"Stroud Road\";s:17:\"street_name_short\";s:9:\"Stroud Rd\";s:4:\"city\";s:11:\"Cirencester\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"GL7 6JN\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(927,156,'_location','field_646bef7321c28'),(928,12,'form_id','1'),(929,12,'_form_id','field_646bef9921c29'),(930,156,'form_id','1'),(931,156,'_form_id','field_646bef9921c29'),(941,158,'_menu_item_type','post_type'),(942,158,'_menu_item_menu_item_parent','0'),(943,158,'_menu_item_object_id','28'),(944,158,'_menu_item_object','services'),(945,158,'_menu_item_target',''),(946,158,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(947,158,'_menu_item_xfn',''),(948,158,'_menu_item_url',''),(950,159,'_menu_item_type','post_type'),(951,159,'_menu_item_menu_item_parent','0'),(952,159,'_menu_item_object_id','30'),(953,159,'_menu_item_object','services'),(954,159,'_menu_item_target',''),(955,159,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(956,159,'_menu_item_xfn',''),(957,159,'_menu_item_url',''),(959,160,'_menu_item_type','post_type'),(960,160,'_menu_item_menu_item_parent','0'),(961,160,'_menu_item_object_id','29'),(962,160,'_menu_item_object','services'),(963,160,'_menu_item_target',''),(964,160,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(965,160,'_menu_item_xfn',''),(966,160,'_menu_item_url',''),(968,161,'_menu_item_type','post_type'),(969,161,'_menu_item_menu_item_parent','0'),(970,161,'_menu_item_object_id','33'),(971,161,'_menu_item_object','services'),(972,161,'_menu_item_target',''),(973,161,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(974,161,'_menu_item_xfn',''),(975,161,'_menu_item_url',''),(977,162,'_menu_item_type','post_type'),(978,162,'_menu_item_menu_item_parent','0'),(979,162,'_menu_item_object_id','27'),(980,162,'_menu_item_object','services'),(981,162,'_menu_item_target',''),(982,162,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(983,162,'_menu_item_xfn',''),(984,162,'_menu_item_url',''),(986,163,'_menu_item_type','post_type'),(987,163,'_menu_item_menu_item_parent','0'),(988,163,'_menu_item_object_id','31'),(989,163,'_menu_item_object','services'),(990,163,'_menu_item_target',''),(991,163,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(992,163,'_menu_item_xfn',''),(993,163,'_menu_item_url',''),(995,164,'_menu_item_type','post_type'),(996,164,'_menu_item_menu_item_parent','0'),(997,164,'_menu_item_object_id','14'),(998,164,'_menu_item_object','services'),(999,164,'_menu_item_target',''),(1000,164,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1001,164,'_menu_item_xfn',''),(1002,164,'_menu_item_url',''),(1004,165,'_menu_item_type','post_type'),(1005,165,'_menu_item_menu_item_parent','0'),(1006,165,'_menu_item_object_id','37'),(1007,165,'_menu_item_object','services'),(1008,165,'_menu_item_target',''),(1009,165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1010,165,'_menu_item_xfn',''),(1011,165,'_menu_item_url',''),(1013,166,'_menu_item_type','post_type'),(1014,166,'_menu_item_menu_item_parent','0'),(1015,166,'_menu_item_object_id','35'),(1016,166,'_menu_item_object','services'),(1017,166,'_menu_item_target',''),(1018,166,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1019,166,'_menu_item_xfn',''),(1020,166,'_menu_item_url',''),(1022,167,'_menu_item_type','post_type'),(1023,167,'_menu_item_menu_item_parent','0'),(1024,167,'_menu_item_object_id','32'),(1025,167,'_menu_item_object','services'),(1026,167,'_menu_item_target',''),(1027,167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1028,167,'_menu_item_xfn',''),(1029,167,'_menu_item_url',''),(1031,168,'_menu_item_type','post_type'),(1032,168,'_menu_item_menu_item_parent','0'),(1033,168,'_menu_item_object_id','36'),(1034,168,'_menu_item_object','services'),(1035,168,'_menu_item_target',''),(1036,168,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1037,168,'_menu_item_xfn',''),(1038,168,'_menu_item_url',''),(1040,169,'_menu_item_type','post_type'),(1041,169,'_menu_item_menu_item_parent','0'),(1042,169,'_menu_item_object_id','34'),(1043,169,'_menu_item_object','services'),(1044,169,'_menu_item_target',''),(1045,169,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1046,169,'_menu_item_xfn',''),(1047,169,'_menu_item_url',''),(1049,170,'_menu_item_type','post_type_archive'),(1050,170,'_menu_item_menu_item_parent','0'),(1051,170,'_menu_item_object_id','-39'),(1052,170,'_menu_item_object','projects'),(1053,170,'_menu_item_target',''),(1054,170,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1055,170,'_menu_item_xfn',''),(1056,170,'_menu_item_url',''),(1058,171,'_menu_item_type','post_type_archive'),(1059,171,'_menu_item_menu_item_parent','0'),(1060,171,'_menu_item_object_id','-22'),(1061,171,'_menu_item_object','services'),(1062,171,'_menu_item_target',''),(1063,171,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1064,171,'_menu_item_xfn',''),(1065,171,'_menu_item_url',''),(1067,21,'_wp_old_date','2023-05-18'),(1068,23,'_wp_old_date','2023-05-18'),(1069,24,'_wp_old_date','2023-05-18'),(1070,172,'_menu_item_type','post_type'),(1071,172,'_menu_item_menu_item_parent','0'),(1072,172,'_menu_item_object_id','6'),(1073,172,'_menu_item_object','page'),(1074,172,'_menu_item_target',''),(1075,172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1076,172,'_menu_item_xfn',''),(1077,172,'_menu_item_url',''),(1079,173,'_menu_item_type','post_type'),(1080,173,'_menu_item_menu_item_parent','0'),(1081,173,'_menu_item_object_id','8'),(1082,173,'_menu_item_object','page'),(1083,173,'_menu_item_target',''),(1084,173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1085,173,'_menu_item_xfn',''),(1086,173,'_menu_item_url',''),(1088,174,'_menu_item_type','post_type_archive'),(1089,174,'_menu_item_menu_item_parent','0'),(1090,174,'_menu_item_object_id','-22'),(1091,174,'_menu_item_object','services'),(1092,174,'_menu_item_target',''),(1093,174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1094,174,'_menu_item_xfn',''),(1095,174,'_menu_item_url',''),(1097,175,'_menu_item_type','post_type_archive'),(1098,175,'_menu_item_menu_item_parent','0'),(1099,175,'_menu_item_object_id','-39'),(1100,175,'_menu_item_object','projects'),(1101,175,'_menu_item_target',''),(1102,175,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1103,175,'_menu_item_xfn',''),(1104,175,'_menu_item_url',''),(1106,176,'_menu_item_type','post_type'),(1107,176,'_menu_item_menu_item_parent','0'),(1108,176,'_menu_item_object_id','12'),(1109,176,'_menu_item_object','page'),(1110,176,'_menu_item_target',''),(1111,176,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1112,176,'_menu_item_xfn',''),(1113,176,'_menu_item_url',''),(1115,3,'_edit_last','1'),(1116,3,'_edit_lock','1684834953:1'),(1117,178,'_edit_last','1'),(1118,178,'_wp_page_template','default'),(1119,178,'_edit_lock','1684796699:1'),(1120,180,'_menu_item_type','post_type'),(1121,180,'_menu_item_menu_item_parent','0'),(1122,180,'_menu_item_object_id','3'),(1123,180,'_menu_item_object','page'),(1124,180,'_menu_item_target',''),(1125,180,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1126,180,'_menu_item_xfn',''),(1127,180,'_menu_item_url',''),(1129,181,'_menu_item_type','post_type'),(1130,181,'_menu_item_menu_item_parent','0'),(1131,181,'_menu_item_object_id','178'),(1132,181,'_menu_item_object','page'),(1133,181,'_menu_item_target',''),(1134,181,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1135,181,'_menu_item_xfn',''),(1136,181,'_menu_item_url',''),(1137,188,'_wp_attached_file','2023/05/Charlton-park.jpg'),(1138,188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1780;s:6:\"height\";i:835;s:4:\"file\";s:25:\"2023/05/Charlton-park.jpg\";s:8:\"filesize\";i:794576;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Charlton-park-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9895;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"Charlton-park-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86399;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Charlton-park-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5898;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Charlton-park-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52547;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"Charlton-park-1536x721.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169622;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1139,189,'_wp_attached_file','2023/05/IMG_7945.jpg'),(1140,189,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1780;s:6:\"height\";i:835;s:4:\"file\";s:20:\"2023/05/IMG_7945.jpg\";s:8:\"filesize\";i:1174305;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_7945-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9240;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_7945-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90141;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_7945-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5240;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_7945-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52349;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"IMG_7945-1536x721.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194273;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1141,190,'_wp_attached_file','2023/05/Screenshot-2023-05-04-at-08.20.15.jpg'),(1142,190,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1780;s:6:\"height\";i:835;s:4:\"file\";s:45:\"2023/05/Screenshot-2023-05-04-at-08.20.15.jpg\";s:8:\"filesize\";i:606554;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-05-04-at-08.20.15-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10617;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-05-04-at-08.20.15-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60667;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-05-04-at-08.20.15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6347;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-05-04-at-08.20.15-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40646;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-05-04-at-08.20.15-1536x721.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107583;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1143,191,'_wp_attached_file','2023/05/Screenshot-2023-05-04-at-09.14.22.jpg'),(1144,191,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1780;s:6:\"height\";i:835;s:4:\"file\";s:45:\"2023/05/Screenshot-2023-05-04-at-09.14.22.jpg\";s:8:\"filesize\";i:443541;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-05-04-at-09.14.22-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5767;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-05-04-at-09.14.22-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31779;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-05-04-at-09.14.22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3859;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-05-04-at-09.14.22-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20865;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-05-04-at-09.14.22-1536x721.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61257;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1145,192,'_wp_attached_file','2023/05/shutterstock_178694141.jpg'),(1146,192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1780;s:6:\"height\";i:835;s:4:\"file\";s:34:\"2023/05/shutterstock_178694141.jpg\";s:8:\"filesize\";i:1086017;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"shutterstock_178694141-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11209;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"shutterstock_178694141-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96205;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"shutterstock_178694141-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6375;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"shutterstock_178694141-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59562;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"shutterstock_178694141-1536x721.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190060;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1147,193,'_wp_attached_file','2023/05/shutterstock_203363170.jpg'),(1148,193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1780;s:6:\"height\";i:835;s:4:\"file\";s:34:\"2023/05/shutterstock_203363170.jpg\";s:8:\"filesize\";i:916854;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"shutterstock_203363170-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10030;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"shutterstock_203363170-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71821;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"shutterstock_203363170-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"shutterstock_203363170-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45249;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"shutterstock_203363170-1536x721.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137176;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1149,194,'_wp_attached_file','2023/05/shutterstock_1786827122.jpg'),(1150,194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1786;s:6:\"height\";i:835;s:4:\"file\";s:35:\"2023/05/shutterstock_1786827122.jpg\";s:8:\"filesize\";i:675634;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1786827122-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8228;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_1786827122-1024x479.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46281;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1786827122-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5996;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1786827122-768x359.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30976;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"shutterstock_1786827122-1536x718.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81562;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1151,195,'_wp_attached_file','2023/05/shutterstock_2041875230.jpg'),(1152,195,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1780;s:6:\"height\";i:835;s:4:\"file\";s:35:\"2023/05/shutterstock_2041875230.jpg\";s:8:\"filesize\";i:1121891;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_2041875230-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11092;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_2041875230-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93057;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_2041875230-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_2041875230-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56131;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"shutterstock_2041875230-1536x721.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192156;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1153,196,'_wp_attached_file','2023/05/shutterstock_2152310017.jpg'),(1154,196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1780;s:6:\"height\";i:835;s:4:\"file\";s:35:\"2023/05/shutterstock_2152310017.jpg\";s:8:\"filesize\";i:742780;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_2152310017-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6117;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_2152310017-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38852;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_2152310017-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4725;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_2152310017-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25184;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"shutterstock_2152310017-1536x721.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72573;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1155,14,'custom_link',''),(1156,14,'_custom_link','field_646cc99c4199e'),(1157,190,'_wp_attachment_image_alt','Commercial Solar & battery storage'),(1158,29,'_edit_last','2'),(1159,29,'_thumbnail_id','190'),(1160,29,'custom_link_text',''),(1161,29,'_custom_link_text','field_646b9680b37d3'),(1162,29,'custom_link',''),(1163,29,'_custom_link','field_646cc99c4199e'),(1164,29,'importance_intro_title','Commercial solar & battery storage '),(1165,29,'_importance_intro_title','field_646b639ddbbd1'),(1166,29,'importance_intro_subtitle','We focus on offering our customers excellent value for money and proving tangible benefits'),(1167,29,'_importance_intro_subtitle','field_646b63abdbbd2'),(1168,29,'importance_copy','<ul>\r\n <li>Proven savings on your energy bills</li>\r\n <li>Reduction in energy costs, particularly for energy intensive industries</li>\r\n <li>Cost advantage over competitors</li>\r\n <li>Reduction in CO2 emissions</li>\r\n <li>Quantifiable environmental, social and governance (ESG) benefits</li>\r\n <li>Offset the cost of charging electric vehicles</li>\r\n <li>Utilise all solar power generated in daytime operations</li>\r\n <li>Load shift power and provide grid backup with batteries</li>\r\n</ul>'),(1169,29,'_importance_copy','field_646b63badbbd3'),(1170,29,'sidebar_title','Why RAW Energy?'),(1171,29,'_sidebar_title','field_646b63cfdbbd4'),(1172,29,'sidebar_list_0_list_item','Our business only works in renewable energy and energy efficiency'),(1173,29,'_sidebar_list_0_list_item','field_646b7f912a56d'),(1174,29,'sidebar_list_1_list_item','We have been trading for more than ten years and our CEO built the first UK solar farms in 2011'),(1175,29,'_sidebar_list_1_list_item','field_646b7f912a56d'),(1176,29,'sidebar_list_2_list_item','We model, design, install, monitor and maintain all equipment installed'),(1177,29,'_sidebar_list_2_list_item','field_646b7f912a56d'),(1178,29,'sidebar_list_3_list_item','We work on complex industrial projects and large portfolios of solar roofs and solar farms so have great experience'),(1179,29,'_sidebar_list_3_list_item','field_646b7f912a56d'),(1180,29,'sidebar_list_4_list_item','All installation teams are MCS qualified'),(1181,29,'_sidebar_list_4_list_item','field_646b7f912a56d'),(1182,29,'sidebar_list_5_list_item','We survey buildings before and after works alongside providing an updated EPC certificate'),(1183,29,'_sidebar_list_5_list_item','field_646b7f912a56d'),(1184,29,'sidebar_list_6_list_item','Battery storage can be added for businesses needing it'),(1185,29,'_sidebar_list_6_list_item','field_646b7f912a56d'),(1186,29,'sidebar_list_7_list_item','All projects can be financed to spread the capital expenditure'),(1187,29,'_sidebar_list_7_list_item','field_646b7f912a56d'),(1188,29,'sidebar_list','8'),(1189,29,'_sidebar_list','field_646b7f362a56c'),(1190,29,'selected_projects',''),(1191,29,'_selected_projects','field_646b6517dbbd7'),(1192,193,'_wp_attachment_image_alt','Domestic & Commercial Insulation'),(1193,37,'_edit_last','3'),(1194,37,'_thumbnail_id','193'),(1195,37,'custom_link_text',''),(1196,37,'_custom_link_text','field_646b9680b37d3'),(1197,37,'custom_link',''),(1198,37,'_custom_link','field_646cc99c4199e'),(1199,37,'importance_intro_title','Domestic & Commercial Insulation'),(1200,37,'_importance_intro_title','field_646b639ddbbd1'),(1201,37,'importance_intro_subtitle',''),(1202,37,'_importance_intro_subtitle','field_646b63abdbbd2'),(1203,37,'importance_copy','Insulation is one of the most effective tools in household and business energy efficiently. Good insulation improves thermal efficiency and the conservation of energy. Raw Energy have over 5 years’ experience in choosing the right method and material for your needs.\r\n\r\nDomestic insulation involves installing insulation materials in homes and residential buildings. The primary purpose of domestic insulation is to enhance thermal comfort, reduce heat loss or gain, and improve energy efficiency. Insulation is typically installed in walls, roofs, floors, and attics to create a barrier that restricts the transfer of heat between the interior and exterior of the house. This helps maintain a stable and comfortable indoor temperature, reduces the need for heating and cooling, and lowers energy consumption and associated costs.\r\n\r\nCommercial insulation focuses on insulating larger buildings, such as offices, retail spaces, industrial facilities, and institutional buildings. The objectives of commercial insulation are similar to domestic insulation, aiming to improve energy efficiency, reduce operational costs, and provide comfortable working or occupancy conditions. Commercial insulation is often applied to walls, roofs, floors, HVAC (heating, ventilation, and air conditioning) ducts, and pipes to minimise heat loss or gain, control temperature variations, and enhance acoustic insulation.\r\n\r\nBoth domestic and commercial insulation can involve the use of various insulation materials, such as fiberglass, cellulose, foam boards and reflective insulation. The specific insulation material and installation techniques depend on factors such as building design, climate conditions, building codes, and desired performance outcomes.'),(1204,37,'_importance_copy','field_646b63badbbd3'),(1205,37,'sidebar_title',''),(1206,37,'_sidebar_title','field_646b63cfdbbd4'),(1207,37,'sidebar_list',''),(1208,37,'_sidebar_list','field_646b7f362a56c'),(1209,37,'selected_projects',''),(1210,37,'_selected_projects','field_646b6517dbbd7'),(1211,37,'hero_subtitle','The least sexy topic in energy efficiency but arguably the most important for UK homes and businesses.'),(1212,37,'_hero_subtitle','field_64774ab450bf1'),(1213,35,'_edit_last','3'),(1214,35,'custom_link_text',''),(1215,35,'_custom_link_text','field_646b9680b37d3'),(1216,35,'custom_link',''),(1217,35,'_custom_link','field_646cc99c4199e'),(1218,35,'hero_subtitle','Our team were responsible for the first UK solar farms built in 2011 and have been developing, building and managing them ever since.'),(1219,35,'_hero_subtitle','field_64774ab450bf1'),(1220,35,'importance_intro_title','Large Scale Solar'),(1221,35,'_importance_intro_title','field_646b639ddbbd1'),(1222,35,'importance_intro_subtitle','The team at Raw Energy have a long history of delivering large scale solar farms across the UK. Raw Energy manage all aspects of these developments from initial site assessment, overseeing the construction to a fully managed asset. We have in-house expertise in design, planning, grid connections, and contracting and so can offer a full service.'),(1223,35,'_importance_intro_subtitle','field_646b63abdbbd2'),(1224,35,'importance_copy','<h5><strong>Here are some key characteristics of large-scale solar:</strong></h5>\r\n1. Capacity: Large-scale solar projects have a high capacity and are designed to generate a large amount of electricity. These projects can range from a few megawatts (MW) to hundreds of MW or even gigawatts (GW) in capacity.\r\n\r\n2. Land Requirement: Due to the significant number of solar modules required, large-scale solar projects typically require substantial land areas for installation. Solar farms require around four per MW installed.\r\n\r\n3. Grid Integration: These projects are usually connected to the electrical grid, allowing the generated electricity to be transmitted and distributed to end-users. This integration involves the use of transformers, inverters, and transmission lines to efficiently manage the power generated.\r\n\r\n4. Power Purchase Agreements (PPAs): To ensure the economic viability of large-scale solar projects, developers often enter into long-term power purchase agreements with utility companies or other entities. These agreements guarantee the sale of electricity at an agreed-upon price, providing financial stability for the project and for the offtaker.\r\n\r\n5. Environmental Benefits: Large-scale solar projects contribute to reducing greenhouse gas emissions by displacing fossil fuel-based electricity generation. They provide a clean and renewable energy source, helping to mitigate climate change and improve air quality.\r\n\r\n6. Large-scale solar plays a crucial role in increasing renewable energy generation to aid the transition towards a more sustainable and low-carbon energy system. These projects can provide jobs and contribute to local economies while reducing dependence on fossil fuels.\r\n\r\n \r\n\r\n<img class=\"alignnone size-medium wp-image-203\" src=\"http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/IMG_2251-1-300x272.jpg\" alt=\"\" width=\"300\" height=\"272\" />'),(1225,35,'_importance_copy','field_646b63badbbd3'),(1226,35,'sidebar_title','Why Raw Energy? '),(1227,35,'_sidebar_title','field_646b63cfdbbd4'),(1228,35,'sidebar_list','8'),(1229,35,'_sidebar_list','field_646b7f362a56c'),(1230,35,'selected_projects',''),(1231,35,'_selected_projects','field_646b6517dbbd7'),(1232,192,'_wp_attachment_image_alt','Large Scale Solar'),(1233,35,'_thumbnail_id','192'),(1234,35,'sidebar_list_0_list_item','Our business only works in renewable energy and energy efficiency'),(1235,35,'_sidebar_list_0_list_item','field_646b7f912a56d'),(1236,35,'sidebar_list_1_list_item','We have been around since 2012 and our CEO built the first UK solar farms in 2011'),(1237,35,'_sidebar_list_1_list_item','field_646b7f912a56d'),(1238,35,'sidebar_list_2_list_item','We model, design, install, monitor and maintain all equipment installed'),(1239,35,'_sidebar_list_2_list_item','field_646b7f912a56d'),(1240,35,'sidebar_list_3_list_item','We work on complex industrial projects and large portfolios of solar roofs and solar farms so have great experience'),(1241,35,'_sidebar_list_3_list_item','field_646b7f912a56d'),(1242,35,'sidebar_list_4_list_item','All installation teams are MCS qualified '),(1243,35,'_sidebar_list_4_list_item','field_646b7f912a56d'),(1244,35,'sidebar_list_5_list_item','We survey buildings before and after works alongside providing an updated EPC certificate'),(1245,35,'_sidebar_list_5_list_item','field_646b7f912a56d'),(1246,35,'sidebar_list_6_list_item','Battery storage can be added for businesses needing it '),(1247,35,'_sidebar_list_6_list_item','field_646b7f912a56d'),(1248,35,'sidebar_list_7_list_item','All projects can be financed to spread the capital expenditure'),(1249,35,'_sidebar_list_7_list_item','field_646b7f912a56d'),(1250,14,'hero_subtitle','We focus on offering our customers excellent value for money and proving tangible benefits. Start your solar journey with us today.'),(1251,14,'_hero_subtitle','field_64774ab450bf1'),(1252,29,'hero_subtitle','We can help you maximise energy savings and allow load shifting with our cutting-edge commercial solar and battery solutions.'),(1253,29,'_hero_subtitle','field_64774ab450bf1'),(1254,27,'_edit_last','3'),(1255,27,'custom_link_text',''),(1256,27,'_custom_link_text','field_646b9680b37d3'),(1257,27,'custom_link',''),(1258,27,'_custom_link','field_646cc99c4199e'),(1259,27,'hero_subtitle','We advise domestic, commercial and utility parties on all aspects of renewable energy and energy efficiency.'),(1260,27,'_hero_subtitle','field_64774ab450bf1'),(1261,27,'importance_intro_title','Raw Energy Consultancy'),(1262,27,'_importance_intro_title','field_646b639ddbbd1'),(1263,27,'importance_intro_subtitle','Raw Energy are trusted by fund managers and asset owners to look after and optimise their portfolios. Raw Energy have been designing, planning, developing, building, buying, managing and selling renewables since 2012.\r\n'),(1264,27,'_importance_intro_subtitle','field_646b63abdbbd2'),(1265,27,'importance_copy','<h5>Assets managed:</h5>\r\n<span style=\"color: #e88000;\">Owner: UK Fund</span>\r\nTechnology: Seven anaerobic digestion plants (biomethane and CHP)\r\n<strong>Scale: 10MW</strong>\r\n\r\n<span style=\"color: #ff9900;\">Owner: South Asian Fund</span>\r\nTechnology: 405 domestic solar rooftops\r\n<strong>Scale: 1.5MW</strong>\r\n\r\n<span style=\"color: #e88000;\">Owner: UK Fund</span>\r\nTechnology: Wind (four sites)\r\n<strong>Scale: 29MW</strong>\r\n\r\n<span style=\"color: #e88000;\">Owner: French fund / Dutch EPC / Raw Energy</span>\r\nTechnology: Biomethane AD\r\n<strong>Scale: 3MW</strong>\r\n\r\n<span style=\"color: #e88000;\">Owner: UK Fund</span>\r\nTechnology: Solar ground mount (14 sites)\r\n<strong>Scale: 66MW</strong>\r\n\r\n<span style=\"color: #e88000;\">Owner: UK Fund</span>\r\nTechnology: Commercial solar rooftops (seven buildings)\r\n<strong>Scale: 590KW</strong>'),(1266,27,'_importance_copy','field_646b63badbbd3'),(1267,27,'sidebar_title','Why RAW Energy?'),(1268,27,'_sidebar_title','field_646b63cfdbbd4'),(1269,27,'sidebar_list_0_list_item','Full performance analysis and monitoring'),(1270,27,'_sidebar_list_0_list_item','field_646b7f912a56d'),(1271,27,'sidebar_list_1_list_item','Service to ensure your panels remain in full working order and operate to their full capability'),(1272,27,'_sidebar_list_1_list_item','field_646b7f912a56d'),(1273,27,'sidebar_list_2_list_item','Maintenance for all system parts such as panels, inverters, batteries and cabling'),(1274,27,'_sidebar_list_2_list_item','field_646b7f912a56d'),(1275,27,'sidebar_list','3'),(1276,27,'_sidebar_list','field_646b7f362a56c'),(1277,27,'selected_projects',''),(1278,27,'_selected_projects','field_646b6517dbbd7'),(1279,200,'_wp_attached_file','2023/05/shutterstock_2133752289.jpg'),(1280,200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1766;s:6:\"height\";i:835;s:4:\"file\";s:35:\"2023/05/shutterstock_2133752289.jpg\";s:8:\"filesize\";i:777876;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_2133752289-300x142.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9349;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_2133752289-1024x484.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:484;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73567;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_2133752289-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5269;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_2133752289-768x363.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46031;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"shutterstock_2133752289-1536x726.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:726;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137057;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1281,200,'_wp_attachment_image_alt','Energy Consultancy'),(1282,27,'_thumbnail_id','200'),(1283,201,'_wp_attached_file','2023/05/IMG_2251.jpg'),(1284,201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:695;s:6:\"height\";i:630;s:4:\"file\";s:20:\"2023/05/IMG_2251.jpg\";s:8:\"filesize\";i:375290;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1285,202,'_wp_attached_file','2023/05/stock-photo-engineer-working-in-office-at-desk-with-solar-laptop-and-concept-home-design-solar-renewable-energy-2290717413.jpg'),(1286,202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:667;s:6:\"height\";i:638;s:4:\"file\";s:134:\"2023/05/stock-photo-engineer-working-in-office-at-desk-with-solar-laptop-and-concept-home-design-solar-renewable-energy-2290717413.jpg\";s:8:\"filesize\";i:279306;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:134:\"stock-photo-engineer-working-in-office-at-desk-with-solar-laptop-and-concept-home-design-solar-renewable-energy-2290717413-300x287.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20992;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:134:\"stock-photo-engineer-working-in-office-at-desk-with-solar-laptop-and-concept-home-design-solar-renewable-energy-2290717413-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7567;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1287,203,'_wp_attached_file','2023/05/IMG_2251-1.jpg'),(1288,203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:695;s:6:\"height\";i:630;s:4:\"file\";s:22:\"2023/05/IMG_2251-1.jpg\";s:8:\"filesize\";i:375290;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"IMG_2251-1-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18342;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_2251-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5849;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1289,34,'_edit_last','2'),(1290,34,'_thumbnail_id','263'),(1291,34,'custom_link_text',''),(1292,34,'_custom_link_text','field_646b9680b37d3'),(1293,34,'custom_link',''),(1294,34,'_custom_link','field_646cc99c4199e'),(1295,34,'hero_subtitle','We are trusted to manage, buy and sell wind farms for owners across the UK and recognise great opportunity in this sector.'),(1296,34,'_hero_subtitle','field_64774ab450bf1'),(1297,34,'importance_intro_title','Wind Energy '),(1298,34,'_importance_intro_title','field_646b639ddbbd1'),(1299,34,'importance_intro_subtitle','Wind power is a plentiful domestic resource in the UK which offers huge potential for economic growth. It is a cost-effective, low maintenance technology with high efficiency. \r\n\r\nOver the last ten years, Raw Energy has gained a breadth of experience in wind energy. We are here to guide you through the process ensuring you make the right decisions for your organisation.\r\n'),(1300,34,'_importance_intro_subtitle','field_646b63abdbbd2'),(1301,34,'importance_copy',''),(1302,34,'_importance_copy','field_646b63badbbd3'),(1303,34,'sidebar_title','What can Raw Energy provide? '),(1304,34,'_sidebar_title','field_646b63cfdbbd4'),(1305,34,'sidebar_list_0_list_item','Site assessment'),(1306,34,'_sidebar_list_0_list_item','field_646b7f912a56d'),(1307,34,'sidebar_list_1_list_item','Heads of terms, options and leases'),(1308,34,'_sidebar_list_1_list_item','field_646b7f912a56d'),(1309,34,'sidebar_list_2_list_item','Planning'),(1310,34,'_sidebar_list_2_list_item','field_646b7f912a56d'),(1311,34,'sidebar_list_3_list_item','Wayleaves and easements'),(1312,34,'_sidebar_list_3_list_item','field_646b7f912a56d'),(1313,34,'sidebar_list_4_list_item','Grid connections'),(1314,34,'_sidebar_list_4_list_item','field_646b7f912a56d'),(1315,34,'sidebar_list_5_list_item','Power Purchase Agreements (PPAs)'),(1316,34,'_sidebar_list_5_list_item','field_646b7f912a56d'),(1317,34,'sidebar_list','6'),(1318,34,'_sidebar_list','field_646b7f362a56c'),(1319,34,'selected_projects',''),(1320,34,'_selected_projects','field_646b6517dbbd7'),(1321,205,'_wp_attached_file','2023/05/shutterstock_1931317961.jpg'),(1322,205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1780;s:6:\"height\";i:835;s:4:\"file\";s:35:\"2023/05/shutterstock_1931317961.jpg\";s:8:\"filesize\";i:799959;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1931317961-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8220;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_1931317961-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54249;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1931317961-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4465;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1931317961-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34468;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"shutterstock_1931317961-1536x721.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104699;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1323,205,'_wp_attachment_image_alt','Asset Management'),(1324,30,'_edit_last','3'),(1325,30,'_thumbnail_id','205'),(1326,30,'custom_link_text',''),(1327,30,'_custom_link_text','field_646b9680b37d3'),(1328,30,'custom_link',''),(1329,30,'_custom_link','field_646cc99c4199e'),(1330,30,'hero_subtitle','We have extensive experience in looking after all renewable technology and our in-house experts will look after your asset as if it is our own.'),(1331,30,'_hero_subtitle','field_64774ab450bf1'),(1332,30,'importance_intro_title','Asset Management'),(1333,30,'_importance_intro_title','field_646b639ddbbd1'),(1334,30,'importance_intro_subtitle','Raw Energy is a company that works with a series of different organisations, continually building an impressive asset management portfolio. Over the last 10 years, Raw Energy has developed skills across a wide breadth of work, ensuring that they propose the best offerings to suit clients’ needs based on significant experience.'),(1335,30,'_importance_intro_subtitle','field_646b63abdbbd2'),(1336,30,'importance_copy','Their nationwide services include asset valuation, strategic advice on performance reviews, asset disposals and acquisitions, stock takes and inventories. Raw Energy prides itself on tailoring itself to the needs of every individual client.'),(1337,30,'_importance_copy','field_646b63badbbd3'),(1338,30,'sidebar_title','Why RAW Energy?'),(1339,30,'_sidebar_title','field_646b63cfdbbd4'),(1340,30,'sidebar_list_0_list_item','High performance '),(1341,30,'_sidebar_list_0_list_item','field_646b7f912a56d'),(1342,30,'sidebar_list_1_list_item','Excellent communication'),(1343,30,'_sidebar_list_1_list_item','field_646b7f912a56d'),(1344,30,'sidebar_list_2_list_item','Transparency '),(1345,30,'_sidebar_list_2_list_item','field_646b7f912a56d'),(1346,30,'sidebar_list','3'),(1347,30,'_sidebar_list','field_646b7f362a56c'),(1348,30,'selected_projects',''),(1349,30,'_selected_projects','field_646b6517dbbd7'),(1350,37,'importance_copy_title','The importance of loft insulation'),(1351,37,'_importance_copy_title','field_647752539dc40'),(1352,188,'_wp_attachment_image_alt','Anaerobic Digestion'),(1353,28,'_edit_last','3'),(1354,28,'_thumbnail_id','188'),(1355,28,'custom_link_text',''),(1356,28,'_custom_link_text','field_646b9680b37d3'),(1357,28,'custom_link',''),(1358,28,'_custom_link','field_646cc99c4199e'),(1359,28,'hero_subtitle','Anaerobic Digestion is one of the most complex and multi faceted renewable energy systems to manage. '),(1360,28,'_hero_subtitle','field_64774ab450bf1'),(1361,28,'importance_intro_title','What is anaerobic digestion? '),(1362,28,'_importance_intro_title','field_646b639ddbbd1'),(1363,28,'importance_intro_subtitle','Anaerobic digestion is a biological process in which plant and animal materials are broken down and converted into gas and digestate by micro-organisms in the absence of oxygen. This process releases biogas which is c.60% methane and 40% carbon dioxide, which can be used directly to provide heat and power. Biogas can also be purified by removal of the carbon dioxide to produce biomethane, which can be fed directly into the natural gas grid network to be used in homes, businesses or as a transport fuel. '),(1364,28,'_importance_intro_subtitle','field_646b63abdbbd2'),(1365,28,'importance_copy_title','The benefits of anaerobic digestion:'),(1366,28,'_importance_copy_title','field_647752539dc40'),(1367,28,'importance_copy','• Delivering Net Zero\r\n• Improving sustainable farming\r\n• Developing national energy security\r\n\r\nThe types of materials suitable for anaerobic digestion include:\r\n\r\n• Food waste\r\n• Brewery and dairy by-products\r\n• Slurry and manure\r\n• Crops and crop residue\r\n\r\nLooking to recycle any of these products? Please contact us.'),(1368,28,'_importance_copy','field_646b63badbbd3'),(1369,28,'sidebar_title','Why Raw Energy? '),(1370,28,'_sidebar_title','field_646b63cfdbbd4'),(1371,28,'sidebar_list_0_list_item','Raw Energy have over ten years of experience in anaerobic digestion. Our own development Charlton Park Biogas is based near our head office. '),(1372,28,'_sidebar_list_0_list_item','field_646b7f912a56d'),(1373,28,'sidebar_list_1_list_item','HoSt Bioenergy Systems “If you want to know how a project should be managed during the implementation phase, then look at Charlton Park AD. HoSt is proud to have been chosen as technology provider for the project, which was smoothly developed and implemented by Raw Energy. The project is now in operation for a year and showing a stable performance, providing renewable energy to UK’s natural gas grid. We are looking forward to any future collaboration with Raw Energy and are proud to be part of the UK’s renewable energy transition”. '),(1374,28,'_sidebar_list_1_list_item','field_646b7f912a56d'),(1375,28,'sidebar_list','2'),(1376,28,'_sidebar_list','field_646b7f362a56c'),(1377,28,'selected_projects',''),(1378,28,'_selected_projects','field_646b6517dbbd7'),(1379,29,'importance_copy_title',''),(1380,29,'_importance_copy_title','field_647752539dc40'),(1381,32,'_edit_last','3'),(1382,32,'_thumbnail_id','196'),(1383,32,'custom_link_text',''),(1384,32,'_custom_link_text','field_646b9680b37d3'),(1385,32,'custom_link',''),(1386,32,'_custom_link','field_646cc99c4199e'),(1387,32,'hero_subtitle','We monitor and maintain our clients’ solar systems. This is essential to achieve optimal performance and high reliability.'),(1388,32,'_hero_subtitle','field_64774ab450bf1'),(1389,32,'importance_intro_title','Commercial & Domestic Solar Maintenance '),(1390,32,'_importance_intro_title','field_646b639ddbbd1'),(1391,32,'importance_intro_subtitle','Raw Energy provide full and cost effective maintenance of commercial and domestic solar systems.'),(1392,32,'_importance_intro_subtitle','field_646b63abdbbd2'),(1393,32,'importance_copy_title','Solar maintenance is important for:'),(1394,32,'_importance_copy_title','field_647752539dc40'),(1395,32,'importance_copy','• Maximising energy output: Regular maintenance ensures that your solar panels are operating at peak efficiency, which can help to maximise energy output and lower your electricity bills. Modules can achieve up to 30% higher performance when well maintained.\r\n\r\n• Prolonging the life of your system: Solar panels that are well maintained tend to last longer than those that are not. Regular cleaning, inspections, and repairs can help to prevent damage and extend the life of your solar panels.\r\n\r\n• Identifying and addressing issues early: Regular maintenance allows you to identify and address issues with your solar system before they become major problems. This can help to minimise system losses, downtime and prevent costly repairs.\r\n\r\n• Ensuring safety: Solar panels can pose a safety hazard if they are damaged or not installed properly. Regular maintenance helps to ensure that your solar system is functioning safely and correctly.\r\n\r\n• Protecting your investment: Installing a solar system is a significant investment, and regular maintenance helps to protect that investment by ensuring that your system is operating as it should.'),(1396,32,'_importance_copy','field_646b63badbbd3'),(1397,32,'sidebar_title','Why Raw Energy?'),(1398,32,'_sidebar_title','field_646b63cfdbbd4'),(1399,32,'sidebar_list_0_list_item','Performance analysis and monitoring'),(1400,32,'_sidebar_list_0_list_item','field_646b7f912a56d'),(1401,32,'sidebar_list_1_list_item','In-house expertise to design and install your system'),(1402,32,'_sidebar_list_1_list_item','field_646b7f912a56d'),(1403,32,'sidebar_list_2_list_item','Pro-active maintenance for all system parts including panels, inverters, batteries and cabling'),(1404,32,'_sidebar_list_2_list_item','field_646b7f912a56d'),(1405,32,'sidebar_list','3'),(1406,32,'_sidebar_list','field_646b7f362a56c'),(1407,32,'selected_projects',''),(1408,32,'_selected_projects','field_646b6517dbbd7'),(1409,206,'_wp_attached_file','2023/05/shutterstock_1621282165.jpg'),(1410,206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1782;s:6:\"height\";i:846;s:4:\"file\";s:35:\"2023/05/shutterstock_1621282165.jpg\";s:8:\"filesize\";i:705447;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1621282165-300x142.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8252;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_1621282165-1024x486.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47403;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1621282165-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5150;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1621282165-768x365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31134;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"shutterstock_1621282165-1536x729.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86654;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1411,206,'_wp_attachment_image_alt','Electric Vehicle Charging'),(1412,33,'_edit_last','3'),(1413,33,'_thumbnail_id','206'),(1414,33,'custom_link_text',''),(1415,33,'_custom_link_text','field_646b9680b37d3'),(1416,33,'custom_link',''),(1417,33,'_custom_link','field_646cc99c4199e'),(1418,33,'hero_subtitle','Providing the infrastructure to facilitate the strong and consistent growth in electric vehicles.'),(1419,33,'_hero_subtitle','field_64774ab450bf1'),(1420,33,'importance_intro_title',''),(1421,33,'_importance_intro_title','field_646b639ddbbd1'),(1422,33,'importance_intro_subtitle',''),(1423,33,'_importance_intro_subtitle','field_646b63abdbbd2'),(1424,33,'importance_copy_title',''),(1425,33,'_importance_copy_title','field_647752539dc40'),(1426,33,'importance_copy',''),(1427,33,'_importance_copy','field_646b63badbbd3'),(1428,33,'sidebar_title',''),(1429,33,'_sidebar_title','field_646b63cfdbbd4'),(1430,33,'sidebar_list',''),(1431,33,'_sidebar_list','field_646b7f362a56c'),(1432,33,'selected_projects',''),(1433,33,'_selected_projects','field_646b6517dbbd7'),(1434,36,'_edit_last','3'),(1435,36,'_thumbnail_id','194'),(1436,36,'custom_link_text',''),(1437,36,'_custom_link_text','field_646b9680b37d3'),(1438,36,'custom_link',''),(1439,36,'_custom_link','field_646cc99c4199e'),(1440,36,'hero_subtitle','Are you looking to make your home more energy efficient? We can find the right solution for you.'),(1441,36,'_hero_subtitle','field_64774ab450bf1'),(1442,36,'importance_intro_title','Surveys & Energy Performance Certificate (EPC)'),(1443,36,'_importance_intro_title','field_646b639ddbbd1'),(1444,36,'importance_intro_subtitle','Energy Performance Certificates are a legal requirement for building, selling and renting a domestic property. Any dwelling constructed before April 2008 requires an EPC. Any dwelling built after April 2008 may require a Standard Assessment Procedure (SAP) certificate. \r\nAn EPC contains information about a property’s energy use and typical energy costs. Alongside recommendations about how to reduce energy use and how you can save money. An EPC gives a property an energy efficiency rating from A (being most efficient) to G (least efficient) and is valid for 10 years. '),(1445,36,'_importance_intro_subtitle','field_646b63abdbbd2'),(1446,36,'importance_copy_title',''),(1447,36,'_importance_copy_title','field_647752539dc40'),(1448,36,'importance_copy','The survey itself is non-invasive, however, Raw Energy will require access to all rooms throughout the dwelling along with the heating system and loft. There is no need to lift carpets, floorboards or drill holes in walls, if an area is inaccessible, the team will be able to use documents or invoices check insulation or for any hidden work carried out.\r\n\r\nOnce the survey is complete, the EPC be finalised at the office, and then you will be provided with a link to your EPC. EPCs are hosted on a government website and they are updated very swiftly.'),(1449,36,'_importance_copy','field_646b63badbbd3'),(1450,36,'sidebar_title','EPC survey, what’s involved?'),(1451,36,'_sidebar_title','field_646b63cfdbbd4'),(1452,36,'sidebar_list_0_list_item','Water heating system'),(1453,36,'_sidebar_list_0_list_item','field_646b7f912a56d'),(1454,36,'sidebar_list_1_list_item','Space heating system'),(1455,36,'_sidebar_list_1_list_item','field_646b7f912a56d'),(1456,36,'sidebar_list_2_list_item','Property insulation'),(1457,36,'_sidebar_list_2_list_item','field_646b7f912a56d'),(1458,36,'sidebar_list_3_list_item','How the property is constructed '),(1459,36,'_sidebar_list_3_list_item','field_646b7f912a56d'),(1460,36,'sidebar_list_4_list_item','Ventilation '),(1461,36,'_sidebar_list_4_list_item','field_646b7f912a56d'),(1462,36,'sidebar_list_5_list_item','Renewable technologies '),(1463,36,'_sidebar_list_5_list_item','field_646b7f912a56d'),(1464,36,'sidebar_list_6_list_item','Lighting '),(1465,36,'_sidebar_list_6_list_item','field_646b7f912a56d'),(1466,36,'sidebar_list_7_list_item','Prices start from £100/domestic property. To book a survey or discuss further please get in contact.'),(1467,36,'_sidebar_list_7_list_item','field_646b7f912a56d'),(1468,36,'sidebar_list','8'),(1469,36,'_sidebar_list','field_646b7f362a56c'),(1470,36,'selected_projects',''),(1471,36,'_selected_projects','field_646b6517dbbd7'),(1472,189,'_wp_attachment_image_alt','Environmental, Social and Governance (ESG)'),(1473,31,'_edit_last','2'),(1474,31,'_thumbnail_id','189'),(1475,31,'custom_link_text',''),(1476,31,'_custom_link_text','field_646b9680b37d3'),(1477,31,'custom_link',''),(1478,31,'_custom_link','field_646cc99c4199e'),(1479,31,'hero_subtitle','As a relatively new way of quantifying a company’s credentials we can offer advice on how to make practical improvements.'),(1480,31,'_hero_subtitle','field_64774ab450bf1'),(1481,31,'importance_intro_title','Environmental, Social and Governance (ESG) '),(1482,31,'_importance_intro_title','field_646b639ddbbd1'),(1483,31,'importance_intro_subtitle','ESG reporting refers to the disclosure of data covering the companies operations in three pillars including: environmental, social and governance. The reporting Raw Energy undertake will provide you with a snapshot of your company’s impact in these three specific areas. This is made up of both quantitative and qualitative information to show your performance, broken down by these three areas. \r\nMany companies now look to integrate their ESG reporting into their annual reporting to demonstrate how sustainability is embedded in their business. '),(1484,31,'_importance_intro_subtitle','field_646b63abdbbd2'),(1485,31,'importance_copy_title','Why is ESG reporting important? '),(1486,31,'_importance_copy_title','field_647752539dc40'),(1487,31,'importance_copy','• Helps to identify risk-adjusted returns\r\n\r\n• There are increasing global regulations regarding corporate ESG data reporting\r\n\r\n• It is a great way to make companies accountable, which helps consumers and stakeholders build trust with them and their products\r\n\r\n• Prevents greenwashing\r\n\r\n<strong>How can Raw Energy help with this:</strong>\r\n\r\nThe first pillar of ESG is to question: What is your company doing to reduce its direct/indirect pressure on the environment in terms of:\r\n\r\n• Climate change\r\n\r\n• Water use and conservation\r\n\r\n• Land use and land use change\r\n\r\n• Waste production and management'),(1488,31,'_importance_copy','field_646b63badbbd3'),(1489,31,'sidebar_title','Why Raw Energy? '),(1490,31,'_sidebar_title','field_646b63cfdbbd4'),(1491,31,'sidebar_list_0_list_item','Raw Energy focus on offering our customers excellent value for money and providing tangible benefits. With a wealth of experience, we are on hand to answer any questions you may have. We are renowned for offering: '),(1492,31,'_sidebar_list_0_list_item','field_646b7f912a56d'),(1493,31,'sidebar_list_1_list_item','Transparency '),(1494,31,'_sidebar_list_1_list_item','field_646b7f912a56d'),(1495,31,'sidebar_list_2_list_item','Analysis of data'),(1496,31,'_sidebar_list_2_list_item','field_646b7f912a56d'),(1497,31,'sidebar_list_3_list_item','Suggesting and implementing of real solutions '),(1498,31,'_sidebar_list_3_list_item','field_646b7f912a56d'),(1499,31,'sidebar_list','4'),(1500,31,'_sidebar_list','field_646b7f362a56c'),(1501,31,'selected_projects',''),(1502,31,'_selected_projects','field_646b6517dbbd7'),(1503,36,'faqs_0_faq_title','What if my property has an F or G EPC Rating?'),(1504,36,'_faqs_0_faq_title','field_6477582205ac8'),(1505,36,'faqs_0_faq_copy','Raw Energy will be able to guide you with the best ways to improve your rating.'),(1506,36,'_faqs_0_faq_copy','field_6477582905ac9'),(1507,36,'faqs_1_faq_title','How long is an EPC valid for?'),(1508,36,'_faqs_1_faq_title','field_6477582205ac8'),(1509,36,'faqs_1_faq_copy','An EPC is valid for 10 years or until replaced with a new one.'),(1510,36,'_faqs_1_faq_copy','field_6477582905ac9'),(1511,36,'faqs_2_faq_title','Are there any situations where an EPC is not required?'),(1512,36,'_faqs_2_faq_title','field_6477582205ac8'),(1513,36,'faqs_2_faq_copy','EPCs are not required on sale or rent for buildings due to be demolished, provided the seller or landlord can demonstrate that:\r\n\r\n• the building is to be sold or rented out with vacant possession\r\n• the building is suitable for demolition and\r\n• the resulting site is suitable for redevelopment\r\n• all relevant planning permissions, listed building consents and conservation area consents exist in relation to the demolition, and\r\n• they believe, on reasonable grounds, that a prospective buyer or tenant intends to demolish the building (e.g. on evidence of an application for planning permission)'),(1514,36,'_faqs_2_faq_copy','field_6477582905ac9'),(1515,36,'faqs','6'),(1516,36,'_faqs','field_6477581d05ac7'),(1517,158,'_wp_old_date','2023-05-23'),(1518,159,'_wp_old_date','2023-05-23'),(1519,160,'_wp_old_date','2023-05-23'),(1520,161,'_wp_old_date','2023-05-23'),(1521,162,'_wp_old_date','2023-05-23'),(1522,163,'_wp_old_date','2023-05-23'),(1523,164,'_wp_old_date','2023-05-23'),(1524,165,'_wp_old_date','2023-05-23'),(1525,166,'_wp_old_date','2023-05-23'),(1526,167,'_wp_old_date','2023-05-23'),(1527,168,'_wp_old_date','2023-05-23'),(1528,169,'_wp_old_date','2023-05-23'),(1529,211,'hero_background','15'),(1530,211,'_hero_background','field_646bbb6ea0465'),(1531,211,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(1532,211,'_intro_title','field_646bbb89a0467'),(1533,211,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UKs demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(1534,211,'_intro_copy','field_646bbb91a0468'),(1535,211,'sectors_title','Raw Energy work at three scales of renewable generation:'),(1536,211,'_sectors_title','field_646bbba4a046a'),(1537,211,'sectors_0_sector_image','15'),(1538,211,'_sectors_0_sector_image','field_646bbbbba046c'),(1539,211,'sectors_0_sector_title','Kilowatts'),(1540,211,'_sectors_0_sector_title','field_646bbbd2a046d'),(1541,211,'sectors_0_sector_subtitle','(Domestic)'),(1542,211,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(1543,211,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(1544,211,'_sectors_0_sector_copy','field_646bbbe7a046f'),(1545,211,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(1546,211,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(1547,211,'sectors_0_sectors_list_1_list_item','Insulation'),(1548,211,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(1549,211,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(1550,211,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(1551,211,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(1552,211,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(1553,211,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(1554,211,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(1555,211,'sectors_0_sectors_list','5'),(1556,211,'_sectors_0_sectors_list','field_646bbbf5a0470'),(1557,211,'sectors','3'),(1558,211,'_sectors','field_646bbbb1a046b'),(1559,211,'blocks','3'),(1560,211,'_blocks','field_646bbc11a0472'),(1561,211,'outro_title','Since 2012 Raw has developed, consulted for and facilitated over £100million of investment into renewable energy projects and portfolios.'),(1562,211,'_outro_title','field_646bbc4da0477'),(1563,211,'sectors_1_sector_image','15'),(1564,211,'_sectors_1_sector_image','field_646bbbbba046c'),(1565,211,'sectors_1_sector_title','Hundreds of Kilowatts'),(1566,211,'_sectors_1_sector_title','field_646bbbd2a046d'),(1567,211,'sectors_1_sector_subtitle','(Commercial)'),(1568,211,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(1569,211,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(1570,211,'_sectors_1_sector_copy','field_646bbbe7a046f'),(1571,211,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(1572,211,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(1573,211,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(1574,211,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(1575,211,'sectors_1_sectors_list_2_list_item','ESG'),(1576,211,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(1577,211,'sectors_1_sectors_list_3_list_item','Offsetting '),(1578,211,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(1579,211,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(1580,211,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(1581,211,'sectors_1_sectors_list_5_list_item','Conservation'),(1582,211,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(1583,211,'sectors_1_sectors_list','6'),(1584,211,'_sectors_1_sectors_list','field_646bbbf5a0470'),(1585,211,'sectors_2_sector_image','15'),(1586,211,'_sectors_2_sector_image','field_646bbbbba046c'),(1587,211,'sectors_2_sector_title','Megawatt Scale'),(1588,211,'_sectors_2_sector_title','field_646bbbd2a046d'),(1589,211,'sectors_2_sector_subtitle','(Utility)'),(1590,211,'_sectors_2_sector_subtitle','field_646bbbd9a046e'),(1591,211,'sectors_2_sector_copy','Raw Energy develop their own projects at MW scale and leverage their significant experience to consult for others on theirs.'),(1592,211,'_sectors_2_sector_copy','field_646bbbe7a046f'),(1593,211,'sectors_2_sectors_list_0_list_item','Solar'),(1594,211,'_sectors_2_sectors_list_0_list_item','field_646bbbffa0471'),(1595,211,'sectors_2_sectors_list_1_list_item','Wind'),(1596,211,'_sectors_2_sectors_list_1_list_item','field_646bbbffa0471'),(1597,211,'sectors_2_sectors_list_2_list_item','Hydro'),(1598,211,'_sectors_2_sectors_list_2_list_item','field_646bbbffa0471'),(1599,211,'sectors_2_sectors_list_3_list_item','Battery'),(1600,211,'_sectors_2_sectors_list_3_list_item','field_646bbbffa0471'),(1601,211,'sectors_2_sectors_list','4'),(1602,211,'_sectors_2_sectors_list','field_646bbbf5a0470'),(1603,211,'blocks_0_block_title','History'),(1604,211,'_blocks_0_block_title','field_646bbc1da0473'),(1605,211,'blocks_0_block_copy','Raw Energy has been growing since 2012 and has a dedicated team with close and permanently contracted relationships with excellent providers of legal and technical services.'),(1606,211,'_blocks_0_block_copy','field_646bbc23a0474'),(1607,211,'blocks_0_block_image','114'),(1608,211,'_blocks_0_block_image','field_646bbc30a0475'),(1609,211,'blocks_1_block_title','Purpose'),(1610,211,'_blocks_1_block_title','field_646bbc1da0473'),(1611,211,'blocks_1_block_copy','Raw Energy was founded to bridge the gap between renewable energy projects and investors. Due to previous experience of both developing and financing these projects Raw Energy has a rare ability to see both sides of a transaction as well as the experience to understand its full transactional requirements.'),(1612,211,'_blocks_1_block_copy','field_646bbc23a0474'),(1613,211,'blocks_1_block_image','116'),(1614,211,'_blocks_1_block_image','field_646bbc30a0475'),(1615,211,'blocks_2_block_title','Capability'),(1616,211,'_blocks_2_block_title','field_646bbc1da0473'),(1617,211,'blocks_2_block_copy','A strong network of institutional investors allows Raw Energy to match projects with suitable investors and then provide the transactional skills to close the investment adding value on both sides.\r\n\r\nThe company still strives to develop their own projects in sectors where long-term opportunities have been identified.'),(1618,211,'_blocks_2_block_copy','field_646bbc23a0474'),(1619,211,'blocks_2_block_image','118'),(1620,211,'_blocks_2_block_image','field_646bbc30a0475'),(1621,6,'hero_carousel_0_slide_video','https://vimeo.com/745798278'),(1622,6,'_hero_carousel_0_slide_video','field_646b85db9b756'),(1623,212,'hero_carousel_0_slide_background_type','video'),(1624,212,'_hero_carousel_0_slide_background_type','field_646b85a69b754'),(1625,212,'hero_carousel_0_slide_image','15'),(1626,212,'_hero_carousel_0_slide_image','field_646b85c69b755'),(1627,212,'hero_carousel_0_slide_title','Domestic Solar & Installation'),(1628,212,'_hero_carousel_0_slide_title','field_646b85ed9b757'),(1629,212,'hero_carousel_0_slide_subtitle','We focus on offering our customers excellent value for money and proving tangible benefits'),(1630,212,'_hero_carousel_0_slide_subtitle','field_646b85f99b758'),(1631,212,'hero_carousel','1'),(1632,212,'_hero_carousel','field_646b85999b753'),(1633,212,'featured_services_title','Domestic & Commercial Savings'),(1634,212,'_featured_services_title','field_646b9635ea0a4'),(1635,212,'services_title','But that’s not all'),(1636,212,'_services_title','field_646b964aea0a5'),(1637,212,'ratings_title','Don’t just take our word for it'),(1638,212,'_ratings_title','field_646b86339b75a'),(1639,212,'hero_carousel_0_slide_video','https://vimeo.com/745798278'),(1640,212,'_hero_carousel_0_slide_video','field_646b85db9b756'),(1641,213,'hero_carousel_0_slide_background_type','image'),(1642,213,'_hero_carousel_0_slide_background_type','field_646b85a69b754'),(1643,213,'hero_carousel_0_slide_image','15'),(1644,213,'_hero_carousel_0_slide_image','field_646b85c69b755'),(1645,213,'hero_carousel_0_slide_title','Domestic Solar & Installation'),(1646,213,'_hero_carousel_0_slide_title','field_646b85ed9b757'),(1647,213,'hero_carousel_0_slide_subtitle','We focus on offering our customers excellent value for money and proving tangible benefits'),(1648,213,'_hero_carousel_0_slide_subtitle','field_646b85f99b758'),(1649,213,'hero_carousel','1'),(1650,213,'_hero_carousel','field_646b85999b753'),(1651,213,'featured_services_title','Domestic & Commercial Savings'),(1652,213,'_featured_services_title','field_646b9635ea0a4'),(1653,213,'services_title','But that’s not all'),(1654,213,'_services_title','field_646b964aea0a5'),(1655,213,'ratings_title','Don’t just take our word for it'),(1656,213,'_ratings_title','field_646b86339b75a'),(1657,213,'hero_carousel_0_slide_video','https://vimeo.com/745798278'),(1658,213,'_hero_carousel_0_slide_video','field_646b85db9b756'),(1659,6,'hero_carousel_1_slide_background_type','video'),(1660,6,'_hero_carousel_1_slide_background_type','field_646b85a69b754'),(1661,6,'hero_carousel_1_slide_video','https://vimeo.com/745798278'),(1662,6,'_hero_carousel_1_slide_video','field_646b85db9b756'),(1663,6,'hero_carousel_1_slide_title',''),(1664,6,'_hero_carousel_1_slide_title','field_646b85ed9b757'),(1665,6,'hero_carousel_1_slide_subtitle',''),(1666,6,'_hero_carousel_1_slide_subtitle','field_646b85f99b758'),(1667,215,'hero_carousel_0_slide_background_type','image'),(1668,215,'_hero_carousel_0_slide_background_type','field_646b85a69b754'),(1669,215,'hero_carousel_0_slide_image','15'),(1670,215,'_hero_carousel_0_slide_image','field_646b85c69b755'),(1671,215,'hero_carousel_0_slide_title','Domestic Solar & Installation'),(1672,215,'_hero_carousel_0_slide_title','field_646b85ed9b757'),(1673,215,'hero_carousel_0_slide_subtitle','We focus on offering our customers excellent value for money and proving tangible benefits'),(1674,215,'_hero_carousel_0_slide_subtitle','field_646b85f99b758'),(1675,215,'hero_carousel','2'),(1676,215,'_hero_carousel','field_646b85999b753'),(1677,215,'featured_services_title','Domestic & Commercial Savings'),(1678,215,'_featured_services_title','field_646b9635ea0a4'),(1679,215,'services_title','But that’s not all'),(1680,215,'_services_title','field_646b964aea0a5'),(1681,215,'ratings_title','Don’t just take our word for it'),(1682,215,'_ratings_title','field_646b86339b75a'),(1683,215,'hero_carousel_0_slide_video','https://vimeo.com/745798278'),(1684,215,'_hero_carousel_0_slide_video','field_646b85db9b756'),(1685,215,'hero_carousel_1_slide_background_type','video'),(1686,215,'_hero_carousel_1_slide_background_type','field_646b85a69b754'),(1687,215,'hero_carousel_1_slide_video','https://vimeo.com/745798278'),(1688,215,'_hero_carousel_1_slide_video','field_646b85db9b756'),(1689,215,'hero_carousel_1_slide_title','Video'),(1690,215,'_hero_carousel_1_slide_title','field_646b85ed9b757'),(1691,215,'hero_carousel_1_slide_subtitle','This is a video slide'),(1692,215,'_hero_carousel_1_slide_subtitle','field_646b85f99b758'),(1693,27,'importance_copy_title',''),(1694,27,'_importance_copy_title','field_647752539dc40'),(1695,27,'faqs',''),(1696,27,'_faqs','field_6477581d05ac7'),(1697,216,'_wp_attached_file','2023/06/Team-Bob_.jpg'),(1698,216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1188;s:6:\"height\";i:1300;s:4:\"file\";s:21:\"2023/06/Team-Bob_.jpg\";s:8:\"filesize\";i:1026363;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Team-Bob_-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38849;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"Team-Bob_-936x1024.jpg\";s:5:\"width\";i:936;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171971;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Team-Bob_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29777;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"Team-Bob_-768x840.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121937;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1676369732\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1699,217,'_wp_attached_file','2023/06/Team-Felix_.jpg'),(1700,217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1188;s:6:\"height\";i:1300;s:4:\"file\";s:23:\"2023/06/Team-Felix_.jpg\";s:8:\"filesize\";i:838597;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Team-Felix_-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33491;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Team-Felix_-936x1024.jpg\";s:5:\"width\";i:936;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130739;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Team-Felix_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26607;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Team-Felix_-768x840.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95930;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 12 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1676370053\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"7.5\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1701,218,'_wp_attached_file','2023/06/Team-Harry_.jpg'),(1702,218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1188;s:6:\"height\";i:1300;s:4:\"file\";s:23:\"2023/06/Team-Harry_.jpg\";s:8:\"filesize\";i:863608;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Team-Harry_-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37822;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Team-Harry_-936x1024.jpg\";s:5:\"width\";i:936;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158361;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Team-Harry_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29431;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Team-Harry_-768x840.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116302;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 12 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1676369925\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"7.5\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1703,219,'_wp_attached_file','2023/06/Team-HBK.jpg'),(1704,219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1188;s:6:\"height\";i:1300;s:4:\"file\";s:20:\"2023/06/Team-HBK.jpg\";s:8:\"filesize\";i:872680;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Team-HBK-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33314;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Team-HBK-936x1024.jpg\";s:5:\"width\";i:936;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130317;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Team-HBK-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27119;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Team-HBK-768x840.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92643;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone SE\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1462268979\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:17:\"0.028571428571429\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1705,220,'_wp_attached_file','2023/06/Team-Sam-TBC.jpg'),(1706,220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:1188;s:4:\"file\";s:24:\"2023/06/Team-Sam-TBC.jpg\";s:8:\"filesize\";i:832357;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Team-Sam-TBC-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31741;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Team-Sam-TBC-1024x936.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:936;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115604;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Team-Sam-TBC-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26156;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Team-Sam-TBC-768x702.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:702;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74321;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone SE\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1461234219\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:17:\"0.028571428571429\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1707,221,'_wp_attached_file','2023/06/Team-Tim_.jpg'),(1708,221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1188;s:6:\"height\";i:1300;s:4:\"file\";s:21:\"2023/06/Team-Tim_.jpg\";s:8:\"filesize\";i:961064;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Team-Tim_-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39097;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"Team-Tim_-936x1024.jpg\";s:5:\"width\";i:936;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172325;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Team-Tim_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29480;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"Team-Tim_-768x840.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124130;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 12 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1676370328\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"7.5\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1709,222,'_wp_attached_file','2023/06/Team-Zac.jpg'),(1710,222,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1188;s:6:\"height\";i:1300;s:4:\"file\";s:20:\"2023/06/Team-Zac.jpg\";s:8:\"filesize\";i:928645;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Team-Zac-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39081;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Team-Zac-936x1024.jpg\";s:5:\"width\";i:936;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167629;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Team-Zac-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29917;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Team-Zac-768x840.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122330;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 12 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1676370253\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"7.5\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1711,223,'_wp_attached_file','2023/06/Team-Stu.jpg'),(1712,223,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:1188;s:4:\"file\";s:20:\"2023/06/Team-Stu.jpg\";s:8:\"filesize\";i:869737;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Team-Stu-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33265;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Team-Stu-1024x936.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:936;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158353;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Team-Stu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26365;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Team-Stu-768x702.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:702;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94970;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1713,224,'_wp_attached_file','2023/06/Teanm-Will.jpg'),(1714,224,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1188;s:6:\"height\";i:1300;s:4:\"file\";s:22:\"2023/06/Teanm-Will.jpg\";s:8:\"filesize\";i:898750;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Teanm-Will-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33924;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Teanm-Will-936x1024.jpg\";s:5:\"width\";i:936;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184072;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Teanm-Will-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26664;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Teanm-Will-768x840.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129445;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1715,223,'_wp_attachment_image_alt','Raw Team'),(1716,10,'team_members_5_team_member_photo','222'),(1717,10,'_team_members_5_team_member_photo','field_646be75714819'),(1718,10,'team_members_5_team_member_name','Zac Barrett'),(1719,10,'_team_members_5_team_member_name','field_646be7621481a'),(1720,10,'team_members_5_team_member_title','Solar Sales '),(1721,10,'_team_members_5_team_member_title','field_646be76c1481b'),(1722,10,'team_members_5_team_member_bio','Zac Joined Raw Energy in December 2022 to head up Residential and commercial solar. Coming from Wessex Internet (a rural broadband provider) Zac managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build.\r\n\r\nZac is very involved in solar sales and is excited to help build the ever-expanding team. \r\n\r\nIn his spare time is often found on a riverbank or wondering the British countryside with his mad spaniels. \r\n'),(1723,10,'_team_members_5_team_member_bio','field_646be7781481c'),(1724,10,'team_members_6_team_member_photo','217'),(1725,10,'_team_members_6_team_member_photo','field_646be75714819'),(1726,10,'team_members_6_team_member_name','Felix Ma'),(1727,10,'_team_members_6_team_member_name','field_646be7621481a'),(1728,10,'team_members_6_team_member_title','Renewable Energy Asset Manager'),(1729,10,'_team_members_6_team_member_title','field_646be76c1481b'),(1730,10,'team_members_6_team_member_bio','Felix joined Raw Energy back in the Winter of 2022 after working as an engineer for the industrial cooling sector. \r\n\r\nHe has a keen interest within the renewable energy sector since his childhood and has develop his technical skills through a degree in renewable energy engineering.\r\n\r\nFelix is working as a renewable energy asset manager, building and implementing the financial model for Raw Energy’s own bioenergy plant. \r\n'),(1731,10,'_team_members_6_team_member_bio','field_646be7781481c'),(1732,10,'team_members_7_team_member_photo','242'),(1733,10,'_team_members_7_team_member_photo','field_646be75714819'),(1734,10,'team_members_7_team_member_name','Dave Vincent'),(1735,10,'_team_members_7_team_member_name','field_646be7621481a'),(1736,10,'team_members_7_team_member_title','Delivery Manager '),(1737,10,'_team_members_7_team_member_title','field_646be76c1481b'),(1738,10,'team_members_7_team_member_bio','Zac has recently Joined Raw (Winter 2022) to head up Residential and commercial solar for Raw. Coming from Wessex Internet (a rural broadband provider) he managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build. Zac has been very involved in sales and is excited to be joining the growing team at Raw in the renewable energy industry.'),(1739,10,'_team_members_7_team_member_bio','field_646be7781481c'),(1740,10,'team_members_8_team_member_photo','242'),(1741,10,'_team_members_8_team_member_photo','field_646be75714819'),(1742,10,'team_members_8_team_member_name','Debbie Hipkin'),(1743,10,'_team_members_8_team_member_name','field_646be7621481a'),(1744,10,'team_members_8_team_member_title','Finance '),(1745,10,'_team_members_8_team_member_title','field_646be76c1481b'),(1746,10,'team_members_8_team_member_bio','Debbie joined Raw Energy in July 2022. Her accounts experience covers practise, small businesses and large international companies both in the UK and abroad. \r\nSince going self employed in 2006 Debbie has managed a client base of 5 different firms. Debbie has really enjoyed developing her knowledge of the sustainable projects Raw Energy work on and looks forward to the exciting future ahead. \r\n'),(1747,10,'_team_members_8_team_member_bio','field_646be7781481c'),(1748,225,'hero_title','Our Team'),(1749,225,'_hero_title','field_646be59d7838d'),(1750,225,'hero_copy','We are a team of <strong>enthusiastic, likeminded, and efficient people</strong>, here to partner with those who share our values and our desire to make the world better for all.'),(1751,225,'_hero_copy','field_646be5a37838e'),(1752,225,'team_members_0_team_member_photo','223'),(1753,225,'_team_members_0_team_member_photo','field_646be75714819'),(1754,225,'team_members_0_team_member_name','Stuart Homewood'),(1755,225,'_team_members_0_team_member_name','field_646be7621481a'),(1756,225,'team_members_0_team_member_title','Title'),(1757,225,'_team_members_0_team_member_title','field_646be76c1481b'),(1758,225,'team_members_0_team_member_bio','Following graduation from the RAC, Stuart joined Low Carbon. During the four and a half years that followed he developed large-scale solar PV projects under Low Carbon and then its successor Inazin. He personally developed over 175MW (880 acres), comprising of over 20 schemes from Cornwall to Lincolnshire, including the UK’s first three 5MW solar farms.\r\n\r\nStuart specialises in site identification, legal acquisition, planning consent and infrastructure connection to reliably deliver paper projects. Stuart has been through four project finances and two refinancing rounds successfully representing the developer and the asset owners to UK and Overseas buyers.\r\n\r\nStuart has worked at Raw Energy for over five years and now heads up the company.'),(1759,225,'_team_members_0_team_member_bio','field_646be7781481c'),(1760,225,'team_members','9'),(1761,225,'_team_members','field_646be74314818'),(1762,225,'join_our_team_title','Are you interested in joining our team?'),(1763,225,'_join_our_team_title','field_646be79e1481e'),(1764,225,'join_our_team_vacancies','Although we don\'t have any vacancies right now, we would love to hear from you. Please drop us an email with your CV'),(1765,225,'_join_our_team_vacancies','field_646be7b01481f'),(1766,225,'join_our_team_perks_0_single_perk','Want to make a difference in our evolving world?'),(1767,225,'_join_our_team_perks_0_single_perk','field_646be7d514821'),(1768,225,'join_our_team_perks_1_single_perk','Want to tackle climate change?'),(1769,225,'_join_our_team_perks_1_single_perk','field_646be7d514821'),(1770,225,'join_our_team_perks_2_single_perk','Want to work for a green energy company?'),(1771,225,'_join_our_team_perks_2_single_perk','field_646be7d514821'),(1772,225,'join_our_team_perks_3_single_perk','Have an interest in any of our services from anaerobic digestion to wind energy?'),(1773,225,'_join_our_team_perks_3_single_perk','field_646be7d514821'),(1774,225,'join_our_team_perks','4'),(1775,225,'_join_our_team_perks','field_646be7c514820'),(1776,225,'team_members_1_team_member_photo','224'),(1777,225,'_team_members_1_team_member_photo','field_646be75714819'),(1778,225,'team_members_1_team_member_name','William Watts'),(1779,225,'_team_members_1_team_member_name','field_646be7621481a'),(1780,225,'team_members_1_team_member_title','Finance'),(1781,225,'_team_members_1_team_member_title','field_646be76c1481b'),(1782,225,'team_members_1_team_member_bio','Founding member of Rabobank’s Renewables Finance Department, where he was Global Head of Solar investment. William was responsible for Rabo’s involvement in more than €1 Bio worth of Solar installations. He also managed transactions in Wind, Biofuels and Biomass.\r\n\r\nWilliam founded the Low Carbon Group, one of the largest developers of UK Solar installations and now successful fund manager, where he met Stuart.\r\n\r\nWilliam founded Raw in 2012 with the intention of making a diverse business group that addresses the pressing resource and sustainability problems of the 21st century in an ethical manner.'),(1783,225,'_team_members_1_team_member_bio','field_646be7781481c'),(1784,225,'team_members_2_team_member_photo','219'),(1785,225,'_team_members_2_team_member_photo','field_646be75714819'),(1786,225,'team_members_2_team_member_name','Harriet Burrell-Knipe'),(1787,225,'_team_members_2_team_member_name','field_646be7621481a'),(1788,225,'team_members_2_team_member_title',' Project Delivery'),(1789,225,'_team_members_2_team_member_title','field_646be76c1481b'),(1790,225,'team_members_2_team_member_bio','Harriet joined Raw Autumn 2015 as Head of Project Delivery following 3 years with Inazin where she met Stuart.\r\n\r\nWhilst at Inazin she had a dual role of Project Coordinator and Grid Manager involved with the development of 173MW. \r\n\r\nHarriet project coordinates large-scale solar projects through development and due diligence, ensuring clean & organised paper projects. As Grid Manager she successfully builds relationships with Network Operators in both gas and electricity and has submitted 1000s of grid applications.'),(1791,225,'_team_members_2_team_member_bio','field_646be7781481c'),(1792,225,'team_members_3_team_member_photo','220'),(1793,225,'_team_members_3_team_member_photo','field_646be75714819'),(1794,225,'team_members_3_team_member_name','Sam Forrest'),(1795,225,'_team_members_3_team_member_name','field_646be7621481a'),(1796,225,'team_members_3_team_member_title','Finance'),(1797,225,'_team_members_3_team_member_title','field_646be76c1481b'),(1798,225,'team_members_3_team_member_bio','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean maximus sapien non risus blandit rutrum. Mauris porta, erat a gravida consequat, augue elit maximus nulla, vel vehicula ex justo non lacus. Fusce bibendum at justo ac euismod. \r\n\r\nPellentesque et fermentum felis. Praesent lectus risus, dapibus sed urna eu, euismod rutrum lorem. Pellentesque ipsum nibh, pellentesque sit amet ipsum a, cursus ornare risus. Praesent et venenatis tortor.\r\n\r\nMaecenas luctus mauris in tellus dignissim, sit amet commodo nisl lacinia. Nam scelerisque, magna in mattis semper, libero ipsum imperdiet nisi, sit amet vulputate purus elit ac augue.'),(1799,225,'_team_members_3_team_member_bio','field_646be7781481c'),(1800,225,'team_members_4_team_member_photo','216'),(1801,225,'_team_members_4_team_member_photo','field_646be75714819'),(1802,225,'team_members_4_team_member_name','William Watts'),(1803,225,'_team_members_4_team_member_name','field_646be7621481a'),(1804,225,'team_members_4_team_member_title','Finance'),(1805,225,'_team_members_4_team_member_title','field_646be76c1481b'),(1806,225,'team_members_4_team_member_bio','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean maximus sapien non risus blandit rutrum. Mauris porta, erat a gravida consequat, augue elit maximus nulla, vel vehicula ex justo non lacus. Fusce bibendum at justo ac euismod. \r\n\r\nPellentesque et fermentum felis. Praesent lectus risus, dapibus sed urna eu, euismod rutrum lorem. Pellentesque ipsum nibh, pellentesque sit amet ipsum a, cursus ornare risus. Praesent et venenatis tortor.\r\n\r\nMaecenas luctus mauris in tellus dignissim, sit amet commodo nisl lacinia. Nam scelerisque, magna in mattis semper, libero ipsum imperdiet nisi, sit amet vulputate purus elit ac augue.'),(1807,225,'_team_members_4_team_member_bio','field_646be7781481c'),(1808,225,'team_members_5_team_member_photo','217'),(1809,225,'_team_members_5_team_member_photo','field_646be75714819'),(1810,225,'team_members_5_team_member_name',''),(1811,225,'_team_members_5_team_member_name','field_646be7621481a'),(1812,225,'team_members_5_team_member_title',''),(1813,225,'_team_members_5_team_member_title','field_646be76c1481b'),(1814,225,'team_members_5_team_member_bio',''),(1815,225,'_team_members_5_team_member_bio','field_646be7781481c'),(1816,225,'team_members_6_team_member_photo','218'),(1817,225,'_team_members_6_team_member_photo','field_646be75714819'),(1818,225,'team_members_6_team_member_name','Zac Barrett'),(1819,225,'_team_members_6_team_member_name','field_646be7621481a'),(1820,225,'team_members_6_team_member_title','Residential and commercial solar'),(1821,225,'_team_members_6_team_member_title','field_646be76c1481b'),(1822,225,'team_members_6_team_member_bio','Zac has recently Joined Raw (Winter 2022) to head up Residential and commercial solar for Raw. Coming from Wessex Internet (a rural broadband provider) he managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build. Zac has been very involved in sales and is excited to be joining the growing team at Raw in the renewable energy industry.'),(1823,225,'_team_members_6_team_member_bio','field_646be7781481c'),(1824,225,'team_members_7_team_member_photo','221'),(1825,225,'_team_members_7_team_member_photo','field_646be75714819'),(1826,225,'team_members_7_team_member_name',''),(1827,225,'_team_members_7_team_member_name','field_646be7621481a'),(1828,225,'team_members_7_team_member_title',''),(1829,225,'_team_members_7_team_member_title','field_646be76c1481b'),(1830,225,'team_members_7_team_member_bio','Tim joined Raw Energy in 2023 after working within hospitality management for many years. Having\r\nmade the decision to undergo a switch in career path he has entered the renewable energy sector to\r\nforge a career in administration. In his previous career Tim has accrued a wealth of organisational\r\nand communication skills that are put to good use in his role here. Tim oversees the administration\r\nneeds of the business and directly assists the other members of the team with their daily\r\noperations.'),(1831,225,'_team_members_7_team_member_bio','field_646be7781481c'),(1832,225,'team_members_8_team_member_photo','222'),(1833,225,'_team_members_8_team_member_photo','field_646be75714819'),(1834,225,'team_members_8_team_member_name',''),(1835,225,'_team_members_8_team_member_name','field_646be7621481a'),(1836,225,'team_members_8_team_member_title',''),(1837,225,'_team_members_8_team_member_title','field_646be76c1481b'),(1838,225,'team_members_8_team_member_bio','Robert studied Land management at the RAU and developed a keen interest in renewable energy during his studies. Robert is one of our Consultants with a particular focus on Solar PV installation and portfolio management across both residential and commercial property. If you are interested in Solar, or have any renewable projects that you would like to discuss, please do not hesitate to get in touch with Robert or any of our fantastic colleagues here at RAW Energy.'),(1839,225,'_team_members_8_team_member_bio','field_646be7781481c'),(1840,226,'_wp_attached_file','2023/06/shutterstock_2257492191.jpg'),(1841,226,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1082;s:6:\"height\";i:764;s:4:\"file\";s:35:\"2023/06/shutterstock_2257492191.jpg\";s:8:\"filesize\";i:653367;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_2257492191-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15516;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_2257492191-1024x723.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:723;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133087;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_2257492191-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5957;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_2257492191-768x542.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1842,227,'_wp_attached_file','2023/06/shutterstock_1629158851.jpg'),(1843,227,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1082;s:6:\"height\";i:764;s:4:\"file\";s:35:\"2023/06/shutterstock_1629158851.jpg\";s:8:\"filesize\";i:439316;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1629158851-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11295;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_1629158851-1024x723.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:723;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74707;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1629158851-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5212;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1629158851-768x542.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1844,228,'_wp_attached_file','2023/06/shutterstock_290162582.jpg'),(1845,228,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1082;s:6:\"height\";i:764;s:4:\"file\";s:34:\"2023/06/shutterstock_290162582.jpg\";s:8:\"filesize\";i:589685;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"shutterstock_290162582-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12423;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"shutterstock_290162582-1024x723.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:723;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101397;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"shutterstock_290162582-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5287;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"shutterstock_290162582-768x542.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60505;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1846,227,'_wp_attachment_image_alt','Solar commercial'),(1847,228,'_wp_attachment_image_alt','Megawatt Scale'),(1848,229,'hero_background','15'),(1849,229,'_hero_background','field_646bbb6ea0465'),(1850,229,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(1851,229,'_intro_title','field_646bbb89a0467'),(1852,229,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UKs demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(1853,229,'_intro_copy','field_646bbb91a0468'),(1854,229,'sectors_title','Raw Energy work at three scales of renewable generation:'),(1855,229,'_sectors_title','field_646bbba4a046a'),(1856,229,'sectors_0_sector_image','226'),(1857,229,'_sectors_0_sector_image','field_646bbbbba046c'),(1858,229,'sectors_0_sector_title','Kilowatts'),(1859,229,'_sectors_0_sector_title','field_646bbbd2a046d'),(1860,229,'sectors_0_sector_subtitle','(Domestic)'),(1861,229,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(1862,229,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(1863,229,'_sectors_0_sector_copy','field_646bbbe7a046f'),(1864,229,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(1865,229,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(1866,229,'sectors_0_sectors_list_1_list_item','Insulation'),(1867,229,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(1868,229,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(1869,229,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(1870,229,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(1871,229,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(1872,229,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(1873,229,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(1874,229,'sectors_0_sectors_list','5'),(1875,229,'_sectors_0_sectors_list','field_646bbbf5a0470'),(1876,229,'sectors','3'),(1877,229,'_sectors','field_646bbbb1a046b'),(1878,229,'blocks','3'),(1879,229,'_blocks','field_646bbc11a0472'),(1880,229,'outro_title','Since 2012 Raw has developed, consulted for and facilitated over £100million of investment into renewable energy projects and portfolios.'),(1881,229,'_outro_title','field_646bbc4da0477'),(1882,229,'sectors_1_sector_image','227'),(1883,229,'_sectors_1_sector_image','field_646bbbbba046c'),(1884,229,'sectors_1_sector_title','Hundreds of Kilowatts'),(1885,229,'_sectors_1_sector_title','field_646bbbd2a046d'),(1886,229,'sectors_1_sector_subtitle','(Commercial)'),(1887,229,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(1888,229,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(1889,229,'_sectors_1_sector_copy','field_646bbbe7a046f'),(1890,229,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(1891,229,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(1892,229,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(1893,229,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(1894,229,'sectors_1_sectors_list_2_list_item','ESG'),(1895,229,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(1896,229,'sectors_1_sectors_list_3_list_item','Offsetting '),(1897,229,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(1898,229,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(1899,229,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(1900,229,'sectors_1_sectors_list_5_list_item','Conservation'),(1901,229,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(1902,229,'sectors_1_sectors_list','6'),(1903,229,'_sectors_1_sectors_list','field_646bbbf5a0470'),(1904,229,'sectors_2_sector_image','228'),(1905,229,'_sectors_2_sector_image','field_646bbbbba046c'),(1906,229,'sectors_2_sector_title','Megawatt Scale'),(1907,229,'_sectors_2_sector_title','field_646bbbd2a046d'),(1908,229,'sectors_2_sector_subtitle','(Utility)'),(1909,229,'_sectors_2_sector_subtitle','field_646bbbd9a046e'),(1910,229,'sectors_2_sector_copy','Raw Energy develop their own projects at MW scale and leverage their significant experience to consult for others on theirs.'),(1911,229,'_sectors_2_sector_copy','field_646bbbe7a046f'),(1912,229,'sectors_2_sectors_list_0_list_item','Solar'),(1913,229,'_sectors_2_sectors_list_0_list_item','field_646bbbffa0471'),(1914,229,'sectors_2_sectors_list_1_list_item','Wind'),(1915,229,'_sectors_2_sectors_list_1_list_item','field_646bbbffa0471'),(1916,229,'sectors_2_sectors_list_2_list_item','Hydro'),(1917,229,'_sectors_2_sectors_list_2_list_item','field_646bbbffa0471'),(1918,229,'sectors_2_sectors_list_3_list_item','Battery'),(1919,229,'_sectors_2_sectors_list_3_list_item','field_646bbbffa0471'),(1920,229,'sectors_2_sectors_list','4'),(1921,229,'_sectors_2_sectors_list','field_646bbbf5a0470'),(1922,229,'blocks_0_block_title','History'),(1923,229,'_blocks_0_block_title','field_646bbc1da0473'),(1924,229,'blocks_0_block_copy','Raw Energy has been growing since 2012 and has a dedicated team with close and permanently contracted relationships with excellent providers of legal and technical services.'),(1925,229,'_blocks_0_block_copy','field_646bbc23a0474'),(1926,229,'blocks_0_block_image','114'),(1927,229,'_blocks_0_block_image','field_646bbc30a0475'),(1928,229,'blocks_1_block_title','Purpose'),(1929,229,'_blocks_1_block_title','field_646bbc1da0473'),(1930,229,'blocks_1_block_copy','Raw Energy was founded to bridge the gap between renewable energy projects and investors. Due to previous experience of both developing and financing these projects Raw Energy has a rare ability to see both sides of a transaction as well as the experience to understand its full transactional requirements.'),(1931,229,'_blocks_1_block_copy','field_646bbc23a0474'),(1932,229,'blocks_1_block_image','223'),(1933,229,'_blocks_1_block_image','field_646bbc30a0475'),(1934,229,'blocks_2_block_title','Capability'),(1935,229,'_blocks_2_block_title','field_646bbc1da0473'),(1936,229,'blocks_2_block_copy','A strong network of institutional investors allows Raw Energy to match projects with suitable investors and then provide the transactional skills to close the investment adding value on both sides.\r\n\r\nThe company still strives to develop their own projects in sectors where long-term opportunities have been identified.'),(1937,229,'_blocks_2_block_copy','field_646bbc23a0474'),(1938,229,'blocks_2_block_image','118'),(1939,229,'_blocks_2_block_image','field_646bbc30a0475'),(1940,230,'_wp_attached_file','2023/06/shutterstock_1572926665.jpg'),(1941,230,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:836;s:4:\"file\";s:35:\"2023/06/shutterstock_1572926665.jpg\";s:8:\"filesize\";i:1051326;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1572926665-300x131.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8742;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_1572926665-1024x446.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70168;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1572926665-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4468;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1572926665-768x334.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41982;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"shutterstock_1572926665-1536x669.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:669;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142725;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1942,230,'_wp_attachment_image_alt','Renewable energy with integrity since 2012.'),(1943,231,'hero_background','230'),(1944,231,'_hero_background','field_646bbb6ea0465'),(1945,231,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(1946,231,'_intro_title','field_646bbb89a0467'),(1947,231,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UKs demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(1948,231,'_intro_copy','field_646bbb91a0468'),(1949,231,'sectors_title','Raw Energy work at three scales of renewable generation:'),(1950,231,'_sectors_title','field_646bbba4a046a'),(1951,231,'sectors_0_sector_image','226'),(1952,231,'_sectors_0_sector_image','field_646bbbbba046c'),(1953,231,'sectors_0_sector_title','Kilowatts'),(1954,231,'_sectors_0_sector_title','field_646bbbd2a046d'),(1955,231,'sectors_0_sector_subtitle','(Domestic)'),(1956,231,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(1957,231,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(1958,231,'_sectors_0_sector_copy','field_646bbbe7a046f'),(1959,231,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(1960,231,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(1961,231,'sectors_0_sectors_list_1_list_item','Insulation'),(1962,231,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(1963,231,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(1964,231,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(1965,231,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(1966,231,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(1967,231,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(1968,231,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(1969,231,'sectors_0_sectors_list','5'),(1970,231,'_sectors_0_sectors_list','field_646bbbf5a0470'),(1971,231,'sectors','3'),(1972,231,'_sectors','field_646bbbb1a046b'),(1973,231,'blocks','3'),(1974,231,'_blocks','field_646bbc11a0472'),(1975,231,'outro_title','Since 2012 Raw has developed, consulted for and facilitated over £100million of investment into renewable energy projects and portfolios.'),(1976,231,'_outro_title','field_646bbc4da0477'),(1977,231,'sectors_1_sector_image','227'),(1978,231,'_sectors_1_sector_image','field_646bbbbba046c'),(1979,231,'sectors_1_sector_title','Hundreds of Kilowatts'),(1980,231,'_sectors_1_sector_title','field_646bbbd2a046d'),(1981,231,'sectors_1_sector_subtitle','(Commercial)'),(1982,231,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(1983,231,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(1984,231,'_sectors_1_sector_copy','field_646bbbe7a046f'),(1985,231,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(1986,231,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(1987,231,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(1988,231,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(1989,231,'sectors_1_sectors_list_2_list_item','ESG'),(1990,231,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(1991,231,'sectors_1_sectors_list_3_list_item','Offsetting '),(1992,231,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(1993,231,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(1994,231,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(1995,231,'sectors_1_sectors_list_5_list_item','Conservation'),(1996,231,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(1997,231,'sectors_1_sectors_list','6'),(1998,231,'_sectors_1_sectors_list','field_646bbbf5a0470'),(1999,231,'sectors_2_sector_image','228'),(2000,231,'_sectors_2_sector_image','field_646bbbbba046c'),(2001,231,'sectors_2_sector_title','Megawatt Scale'),(2002,231,'_sectors_2_sector_title','field_646bbbd2a046d'),(2003,231,'sectors_2_sector_subtitle','(Utility)'),(2004,231,'_sectors_2_sector_subtitle','field_646bbbd9a046e'),(2005,231,'sectors_2_sector_copy','Raw Energy develop their own projects at MW scale and leverage their significant experience to consult for others on theirs.'),(2006,231,'_sectors_2_sector_copy','field_646bbbe7a046f'),(2007,231,'sectors_2_sectors_list_0_list_item','Solar'),(2008,231,'_sectors_2_sectors_list_0_list_item','field_646bbbffa0471'),(2009,231,'sectors_2_sectors_list_1_list_item','Wind'),(2010,231,'_sectors_2_sectors_list_1_list_item','field_646bbbffa0471'),(2011,231,'sectors_2_sectors_list_2_list_item','Hydro'),(2012,231,'_sectors_2_sectors_list_2_list_item','field_646bbbffa0471'),(2013,231,'sectors_2_sectors_list_3_list_item','Battery'),(2014,231,'_sectors_2_sectors_list_3_list_item','field_646bbbffa0471'),(2015,231,'sectors_2_sectors_list','4'),(2016,231,'_sectors_2_sectors_list','field_646bbbf5a0470'),(2017,231,'blocks_0_block_title','History'),(2018,231,'_blocks_0_block_title','field_646bbc1da0473'),(2019,231,'blocks_0_block_copy','Raw Energy has been growing since 2012 and has a dedicated team with close and permanently contracted relationships with excellent providers of legal and technical services.'),(2020,231,'_blocks_0_block_copy','field_646bbc23a0474'),(2021,231,'blocks_0_block_image','114'),(2022,231,'_blocks_0_block_image','field_646bbc30a0475'),(2023,231,'blocks_1_block_title','Purpose'),(2024,231,'_blocks_1_block_title','field_646bbc1da0473'),(2025,231,'blocks_1_block_copy','Raw Energy was founded to bridge the gap between renewable energy projects and investors. Due to previous experience of both developing and financing these projects Raw Energy has a rare ability to see both sides of a transaction as well as the experience to understand its full transactional requirements.'),(2026,231,'_blocks_1_block_copy','field_646bbc23a0474'),(2027,231,'blocks_1_block_image','223'),(2028,231,'_blocks_1_block_image','field_646bbc30a0475'),(2029,231,'blocks_2_block_title','Capability'),(2030,231,'_blocks_2_block_title','field_646bbc1da0473'),(2031,231,'blocks_2_block_copy','A strong network of institutional investors allows Raw Energy to match projects with suitable investors and then provide the transactional skills to close the investment adding value on both sides.\r\n\r\nThe company still strives to develop their own projects in sectors where long-term opportunities have been identified.'),(2032,231,'_blocks_2_block_copy','field_646bbc23a0474'),(2033,231,'blocks_2_block_image','118'),(2034,231,'_blocks_2_block_image','field_646bbc30a0475'),(2035,36,'faqs_3_faq_title','Where there is a requirement for an EPC to be displayed in a non-dwelling which is rented, who is responsible for ensuring that the EPC is displayed?'),(2036,36,'_faqs_3_faq_title','field_6477582205ac8'),(2037,36,'faqs_3_faq_copy','This is the responsibility of the building occupier.\r\n'),(2038,36,'_faqs_3_faq_copy','field_6477582905ac9'),(2039,36,'faqs_4_faq_title','Can a prospective tenant or buyer waive their right to receive an EPC?'),(2040,36,'_faqs_4_faq_title','field_6477582205ac8'),(2041,36,'faqs_4_faq_copy','The relevant person (i.e. the seller or landlord) has a duty to make available an EPC to a prospective buyer or tenant and may be liable to a penalty charge if they fail to do so, irrespective of whether the prospective buyer or tenant purports to waive an entitlement to receive the certificate.\r\n'),(2042,36,'_faqs_4_faq_copy','field_6477582905ac9'),(2043,36,'faqs_5_faq_title','Do I need a new EPC every time I sell or rent out my building?'),(2044,36,'_faqs_5_faq_title','field_6477582205ac8'),(2045,36,'faqs_5_faq_copy','As long as a valid EPC exists for the building, this can be provided to any prospective buyer or tenant. An EPC is valid for 10 years and during this period the same EPC can be provided to any prospective buyer or tenant. This EPC is no longer valid if a more recent EPC has been lodged on the central register.'),(2046,36,'_faqs_5_faq_copy','field_6477582905ac9'),(2047,35,'importance_copy_title',''),(2048,35,'_importance_copy_title','field_647752539dc40'),(2049,35,'faqs_0_faq_title','What is solar energy? '),(2050,35,'_faqs_0_faq_title','field_6477582205ac8'),(2051,35,'faqs_0_faq_copy','Solar energy is electricity generated through the use of solar photovoltaic (PV) technology. These solar panels are used to capture the sun’s abundant and clean renewable energy, turning it into electricity. \r\nThe cells within the PV modules convert irradiation into Direct Current (DC) power. The inverters convert the DC power to Alternating Current (AC) power. The meter then measures the amount of solar energy produced then the electrical energy is then either - used directly on site, used to charge an on-site battery or distributed directly to the utility grid. \r\n'),(2052,35,'_faqs_0_faq_copy','field_6477582905ac9'),(2053,35,'faqs_1_faq_title','Are solar panels cost effective in the UK? '),(2054,35,'_faqs_1_faq_title','field_6477582205ac8'),(2055,35,'faqs_1_faq_copy','Yes. Whilst there are no longer any tariffs available for domestic or commercial solar installations, the Government are now relying on the economics to encourage solar installation. Taking into account current power pricing, for most domestic users the payback period for solar is very compelling. '),(2056,35,'_faqs_1_faq_copy','field_6477582905ac9'),(2057,35,'faqs_2_faq_title','How much do solar panels cost?'),(2058,35,'_faqs_2_faq_title','field_6477582205ac8'),(2059,35,'faqs_2_faq_copy','This will vary for each application based on roof size, orientation and the consumption at the property. Typically, the cost of a solar system will range from around £6,000 for smaller homes up to £12,000 for larger homes.\r\n'),(2060,35,'_faqs_2_faq_copy','field_6477582905ac9'),(2061,35,'faqs_3_faq_title','How does solar benefit the environment? '),(2062,35,'_faqs_3_faq_title','field_6477582205ac8'),(2063,35,'faqs_3_faq_copy','Without the sun our planet would be very different. It powers almost all activities on earth either directly or otherwise. Solar energy is environmentally friendly because it doesn’t generate green house gasses. Renewable technologies help to reduce our carbon footprint. It is only natural that we utilise the sun for our energy needs.\r\n'),(2064,35,'_faqs_3_faq_copy','field_6477582905ac9'),(2065,35,'faqs','4'),(2066,35,'_faqs','field_6477581d05ac7'),(2067,6,'hero_carousel_1_slide_image','15'),(2068,6,'_hero_carousel_1_slide_image','field_646b85c69b755'),(2069,232,'hero_carousel_0_slide_background_type','video'),(2070,232,'_hero_carousel_0_slide_background_type','field_646b85a69b754'),(2071,232,'hero_carousel_0_slide_image','15'),(2072,232,'_hero_carousel_0_slide_image','field_646b85c69b755'),(2073,232,'hero_carousel_0_slide_title','Welcome to Raw Energy'),(2074,232,'_hero_carousel_0_slide_title','field_646b85ed9b757'),(2075,232,'hero_carousel_0_slide_subtitle','This is a video slide'),(2076,232,'_hero_carousel_0_slide_subtitle','field_646b85f99b758'),(2077,232,'hero_carousel','2'),(2078,232,'_hero_carousel','field_646b85999b753'),(2079,232,'featured_services_title','Domestic & Commercial Savings'),(2080,232,'_featured_services_title','field_646b9635ea0a4'),(2081,232,'services_title','But that’s not all'),(2082,232,'_services_title','field_646b964aea0a5'),(2083,232,'ratings_title','Don’t just take our word for it'),(2084,232,'_ratings_title','field_646b86339b75a'),(2085,232,'hero_carousel_0_slide_video','https://vimeo.com/745798278'),(2086,232,'_hero_carousel_0_slide_video','field_646b85db9b756'),(2087,232,'hero_carousel_1_slide_background_type','image'),(2088,232,'_hero_carousel_1_slide_background_type','field_646b85a69b754'),(2089,232,'hero_carousel_1_slide_video','https://vimeo.com/745798278'),(2090,232,'_hero_carousel_1_slide_video','field_646b85db9b756'),(2091,232,'hero_carousel_1_slide_title','Power your home with a 4kw fully installed system from £7,250'),(2092,232,'_hero_carousel_1_slide_title','field_646b85ed9b757'),(2093,232,'hero_carousel_1_slide_subtitle','Include battery storage for a further £2,740 to maximise the benefits of home solar'),(2094,232,'_hero_carousel_1_slide_subtitle','field_646b85f99b758'),(2095,232,'hero_carousel_1_slide_image','15'),(2096,232,'_hero_carousel_1_slide_image','field_646b85c69b755'),(2097,233,'hero_carousel_0_slide_background_type','video'),(2098,233,'_hero_carousel_0_slide_background_type','field_646b85a69b754'),(2099,233,'hero_carousel_0_slide_image','15'),(2100,233,'_hero_carousel_0_slide_image','field_646b85c69b755'),(2101,233,'hero_carousel_0_slide_title',''),(2102,233,'_hero_carousel_0_slide_title','field_646b85ed9b757'),(2103,233,'hero_carousel_0_slide_subtitle',''),(2104,233,'_hero_carousel_0_slide_subtitle','field_646b85f99b758'),(2105,233,'hero_carousel','2'),(2106,233,'_hero_carousel','field_646b85999b753'),(2107,233,'featured_services_title','Domestic & Commercial Savings'),(2108,233,'_featured_services_title','field_646b9635ea0a4'),(2109,233,'services_title','But that’s not all'),(2110,233,'_services_title','field_646b964aea0a5'),(2111,233,'ratings_title','Don’t just take our word for it'),(2112,233,'_ratings_title','field_646b86339b75a'),(2113,233,'hero_carousel_0_slide_video','https://vimeo.com/745798278'),(2114,233,'_hero_carousel_0_slide_video','field_646b85db9b756'),(2115,233,'hero_carousel_1_slide_background_type','image'),(2116,233,'_hero_carousel_1_slide_background_type','field_646b85a69b754'),(2117,233,'hero_carousel_1_slide_video','https://vimeo.com/745798278'),(2118,233,'_hero_carousel_1_slide_video','field_646b85db9b756'),(2119,233,'hero_carousel_1_slide_title','Power your home with a 4kw fully installed system from £7,250'),(2120,233,'_hero_carousel_1_slide_title','field_646b85ed9b757'),(2121,233,'hero_carousel_1_slide_subtitle','Include battery storage for a further £2,740 to maximise the benefits of home solar'),(2122,233,'_hero_carousel_1_slide_subtitle','field_646b85f99b758'),(2123,233,'hero_carousel_1_slide_image','15'),(2124,233,'_hero_carousel_1_slide_image','field_646b85c69b755'),(2125,10,'team_members_9_team_member_photo','221'),(2126,10,'_team_members_9_team_member_photo','field_646be75714819'),(2127,10,'team_members_9_team_member_name','Tim Collett'),(2128,10,'_team_members_9_team_member_name','field_646be7621481a'),(2129,10,'team_members_9_team_member_title','Administrator '),(2130,10,'_team_members_9_team_member_title','field_646be76c1481b'),(2131,10,'team_members_9_team_member_bio','Tim joined Raw Energy earlier this year after working for several years in hospitality management. Having made the decision to undergo a switch in career path has entered the renewable energy sector to forge a career in administration. \r\nIn his previous career Tim accrued a wealth of organisational and communication skills that are put to good use in his role here at Raw Energy. Tim oversees the administration needs of the business and directly assists the other members of the team with their daily operations. \r\n'),(2132,10,'_team_members_9_team_member_bio','field_646be7781481c'),(2133,10,'team_members_10_team_member_photo','242'),(2134,10,'_team_members_10_team_member_photo','field_646be75714819'),(2135,10,'team_members_10_team_member_name','Daisy Lucker'),(2136,10,'_team_members_10_team_member_name','field_646be7621481a'),(2137,10,'team_members_10_team_member_title','Social Media & Marketing '),(2138,10,'_team_members_10_team_member_title','field_646be76c1481b'),(2139,10,'team_members_10_team_member_bio','Daisy joined Raw Energy as a freelance consultant in March 2023. With a history working at Bulb Energy and for the Department of Business, Energy and Industrial Strategy Daisy oozes a passion for sustainability with a key interest in solar panels and wind energy. \r\nHer passion for sustainability is evident from her most recent expedition – rowing 3,000 miles across the Atlantic as an all female team of 4. Daisy\'s team ‘Full Throttle’ took on an additional 688 mile cycle to the start line in La Gomera, ahead of rowing across the Atlantic attempting to be the most carbon conscious campaign to date.\r\n'),(2140,10,'_team_members_10_team_member_bio','field_646be7781481c'),(2141,10,'team_members_11_team_member_photo','218'),(2142,10,'_team_members_11_team_member_photo','field_646be75714819'),(2143,10,'team_members_11_team_member_name','Harry Sismanidis '),(2144,10,'_team_members_11_team_member_name','field_646be7621481a'),(2145,10,'team_members_11_team_member_title','Asset Manager '),(2146,10,'_team_members_11_team_member_title','field_646be76c1481b'),(2147,10,'team_members_11_team_member_bio','Having worked as an Asset Manager for the past 10 years, Harry joined RAW Energy earlier this year. “I’m excited to work for Raw Energy, where I can transfer my Commercial and Project Management skillset through to the Renewable Energy sector.\r\n Harry is always keen to offer new ideas and solutions to optimise performance and increase the lifespan of any Assets we manage, currently working on our Anaerobic Digestion projects. You can email him here if you have any specific questions. \r\n'),(2148,10,'_team_members_11_team_member_bio','field_646be7781481c'),(2149,234,'hero_title','Our Team'),(2150,234,'_hero_title','field_646be59d7838d'),(2151,234,'hero_copy','We are a team of <strong>enthusiastic, likeminded, and efficient people</strong>, here to partner with those who share our values and our desire to make the world better for all.'),(2152,234,'_hero_copy','field_646be5a37838e'),(2153,234,'team_members_0_team_member_photo','223'),(2154,234,'_team_members_0_team_member_photo','field_646be75714819'),(2155,234,'team_members_0_team_member_name','Stuart Homewood'),(2156,234,'_team_members_0_team_member_name','field_646be7621481a'),(2157,234,'team_members_0_team_member_title','CEO'),(2158,234,'_team_members_0_team_member_title','field_646be76c1481b'),(2159,234,'team_members_0_team_member_bio','Following graduation from the RAC, Stuart joined Low Carbon. During the four and a half years that followed he developed large-scale solar PV projects under Low Carbon and then its successor Inazin. He personally developed over 175MW (880 acres), comprising of over 20 schemes from Cornwall to Lincolnshire, including the UK’s first three 5MW solar farms.\r\n\r\nStuart specialises in site identification, legal acquisition, planning consent and infrastructure connection to reliably deliver paper projects. Stuart has been through four project finances and two refinancing rounds successfully representing the developer and the asset owners to UK and Overseas buyers.\r\n\r\nStuart has worked at Raw Energy for over five years and now heads up the company.'),(2160,234,'_team_members_0_team_member_bio','field_646be7781481c'),(2161,234,'team_members','12'),(2162,234,'_team_members','field_646be74314818'),(2163,234,'join_our_team_title','Are you interested in joining our team?'),(2164,234,'_join_our_team_title','field_646be79e1481e'),(2165,234,'join_our_team_vacancies','Although we don\'t have any vacancies right now, we would love to hear from you. Please drop us an email with your CV'),(2166,234,'_join_our_team_vacancies','field_646be7b01481f'),(2167,234,'join_our_team_perks_0_single_perk','Want to make a difference in our evolving world?'),(2168,234,'_join_our_team_perks_0_single_perk','field_646be7d514821'),(2169,234,'join_our_team_perks_1_single_perk','Want to tackle climate change?'),(2170,234,'_join_our_team_perks_1_single_perk','field_646be7d514821'),(2171,234,'join_our_team_perks_2_single_perk','Want to work for a green energy company?'),(2172,234,'_join_our_team_perks_2_single_perk','field_646be7d514821'),(2173,234,'join_our_team_perks_3_single_perk','Have an interest in any of our services from anaerobic digestion to wind energy?'),(2174,234,'_join_our_team_perks_3_single_perk','field_646be7d514821'),(2175,234,'join_our_team_perks','4'),(2176,234,'_join_our_team_perks','field_646be7c514820'),(2177,234,'team_members_1_team_member_photo','224'),(2178,234,'_team_members_1_team_member_photo','field_646be75714819'),(2179,234,'team_members_1_team_member_name','William Watts'),(2180,234,'_team_members_1_team_member_name','field_646be7621481a'),(2181,234,'team_members_1_team_member_title',''),(2182,234,'_team_members_1_team_member_title','field_646be76c1481b'),(2183,234,'team_members_1_team_member_bio','Founding member of Rabobank’s Renewables Finance Department, where he was Global Head of Solar investment. William was responsible for Rabo’s involvement in more than €1 Bio worth of Solar installations. He also managed transactions in Wind, Biofuels and Biomass.\r\n\r\nWilliam founded the Low Carbon Group, one of the largest developers of UK Solar installations and now successful fund manager, where he met Stuart.\r\n\r\nWilliam founded Raw in 2012 with the intention of making a diverse business group that addresses the pressing resource and sustainability problems of the 21st century in an ethical manner.'),(2184,234,'_team_members_1_team_member_bio','field_646be7781481c'),(2185,234,'team_members_2_team_member_photo','219'),(2186,234,'_team_members_2_team_member_photo','field_646be75714819'),(2187,234,'team_members_2_team_member_name','Harriet Burrell-Knipe'),(2188,234,'_team_members_2_team_member_name','field_646be7621481a'),(2189,234,'team_members_2_team_member_title',' Project Delivery'),(2190,234,'_team_members_2_team_member_title','field_646be76c1481b'),(2191,234,'team_members_2_team_member_bio','Harriet joined Raw Autumn 2015 as Head of Project Delivery following 3 years with Inazin where she met Stuart.\r\n\r\nWhilst at Inazin she had a dual role of Project Coordinator and Grid Manager involved with the development of 173MW. \r\n\r\nHarriet project coordinates large-scale solar projects through development and due diligence, ensuring clean & organised paper projects. As Grid Manager she successfully builds relationships with Network Operators in both gas and electricity and has submitted 1000s of grid applications.'),(2192,234,'_team_members_2_team_member_bio','field_646be7781481c'),(2193,234,'team_members_3_team_member_photo','216'),(2194,234,'_team_members_3_team_member_photo','field_646be75714819'),(2195,234,'team_members_3_team_member_name','Robert Lamble'),(2196,234,'_team_members_3_team_member_name','field_646be7621481a'),(2197,234,'team_members_3_team_member_title','Consultant'),(2198,234,'_team_members_3_team_member_title','field_646be76c1481b'),(2199,234,'team_members_3_team_member_bio','Robert joined Raw Energy back in spring of 2022 after studying land management at the Royal Agricultural University. It was during his degree that he developed a key interest in renewable energy. Robert is one of the consultants here at Raw with a particular focus on Solar PV installation and portfolio management across both residential and commercial property. \r\n\r\n'),(2200,234,'_team_members_3_team_member_bio','field_646be7781481c'),(2201,234,'team_members_4_team_member_photo',''),(2202,234,'_team_members_4_team_member_photo','field_646be75714819'),(2203,234,'team_members_4_team_member_name','Sika'),(2204,234,'_team_members_4_team_member_name','field_646be7621481a'),(2205,234,'team_members_4_team_member_title','Office dog '),(2206,234,'_team_members_4_team_member_title','field_646be76c1481b'),(2207,234,'team_members_4_team_member_bio','The final member of the team is Sika, our very own office dog. Bedlington whippets are capable of up to thirty-five miles per hour, but you will rarely encounter him hitting these heady speeds in the office. He is chiefly responsible for taking lengthy naps and whilst he may not be the most productive member of the team, he certainly succeeds in keeping up morale with aplomb!\r\n'),(2208,234,'_team_members_4_team_member_bio','field_646be7781481c'),(2209,234,'team_members_5_team_member_photo','222'),(2210,234,'_team_members_5_team_member_photo','field_646be75714819'),(2211,234,'team_members_5_team_member_name','Zac Barrett'),(2212,234,'_team_members_5_team_member_name','field_646be7621481a'),(2213,234,'team_members_5_team_member_title','Solar Sales '),(2214,234,'_team_members_5_team_member_title','field_646be76c1481b'),(2215,234,'team_members_5_team_member_bio','Zac Joined Raw Energy in December 2022 to head up Residential and commercial solar. Coming from Wessex Internet (a rural broadband provider) Zac managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build.\r\n\r\nZac is very involved in solar sales and is excited to help build the ever-expanding team. \r\n\r\nIn his spare time is often found on a riverbank or wondering the British countryside with his mad spaniels. \r\n'),(2216,234,'_team_members_5_team_member_bio','field_646be7781481c'),(2217,234,'team_members_6_team_member_photo','217'),(2218,234,'_team_members_6_team_member_photo','field_646be75714819'),(2219,234,'team_members_6_team_member_name','Felix Ma'),(2220,234,'_team_members_6_team_member_name','field_646be7621481a'),(2221,234,'team_members_6_team_member_title','Renewable Energy Asset Manager'),(2222,234,'_team_members_6_team_member_title','field_646be76c1481b'),(2223,234,'team_members_6_team_member_bio','Felix joined Raw Energy back in the Winter of 2022 after working as an engineer for the industrial cooling sector. \r\n\r\nHe has a keen interest within the renewable energy sector since his childhood and has develop his technical skills through a degree in renewable energy engineering.\r\n\r\nFelix is working as a renewable energy asset manager, building and implementing the financial model for Raw Energy’s own bioenergy plant. \r\n'),(2224,234,'_team_members_6_team_member_bio','field_646be7781481c'),(2225,234,'team_members_7_team_member_photo',''),(2226,234,'_team_members_7_team_member_photo','field_646be75714819'),(2227,234,'team_members_7_team_member_name','Dave Vincent'),(2228,234,'_team_members_7_team_member_name','field_646be7621481a'),(2229,234,'team_members_7_team_member_title','Delivery Manager '),(2230,234,'_team_members_7_team_member_title','field_646be76c1481b'),(2231,234,'team_members_7_team_member_bio','Zac has recently Joined Raw (Winter 2022) to head up Residential and commercial solar for Raw. Coming from Wessex Internet (a rural broadband provider) he managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build. Zac has been very involved in sales and is excited to be joining the growing team at Raw in the renewable energy industry.'),(2232,234,'_team_members_7_team_member_bio','field_646be7781481c'),(2233,234,'team_members_8_team_member_photo',''),(2234,234,'_team_members_8_team_member_photo','field_646be75714819'),(2235,234,'team_members_8_team_member_name','Debbie Hipkin'),(2236,234,'_team_members_8_team_member_name','field_646be7621481a'),(2237,234,'team_members_8_team_member_title','Finance '),(2238,234,'_team_members_8_team_member_title','field_646be76c1481b'),(2239,234,'team_members_8_team_member_bio','Debbie joined Raw Energy in July 2022. Her accounts experience covers practise, small businesses and large international companies both in the UK and abroad. \r\nSince going self employed in 2006 Debbie has managed a client base of 5 different firms. Debbie has really enjoyed developing her knowledge of the sustainable projects Raw Energy work on and looks forward to the exciting future ahead. \r\n'),(2240,234,'_team_members_8_team_member_bio','field_646be7781481c'),(2241,234,'team_members_9_team_member_photo','221'),(2242,234,'_team_members_9_team_member_photo','field_646be75714819'),(2243,234,'team_members_9_team_member_name','Tim Collett'),(2244,234,'_team_members_9_team_member_name','field_646be7621481a'),(2245,234,'team_members_9_team_member_title','Administrator '),(2246,234,'_team_members_9_team_member_title','field_646be76c1481b'),(2247,234,'team_members_9_team_member_bio','Tim joined Raw Energy earlier this year after working for several years in hospitality management. Having made the decision to undergo a switch in career path has entered the renewable energy sector to forge a career in administration. \r\nIn his previous career Tim accrued a wealth of organisational and communication skills that are put to good use in his role here at Raw Energy. Tim oversees the administration needs of the business and directly assists the other members of the team with their daily operations. \r\n'),(2248,234,'_team_members_9_team_member_bio','field_646be7781481c'),(2249,234,'team_members_10_team_member_photo',''),(2250,234,'_team_members_10_team_member_photo','field_646be75714819'),(2251,234,'team_members_10_team_member_name','Daisy Lucker'),(2252,234,'_team_members_10_team_member_name','field_646be7621481a'),(2253,234,'team_members_10_team_member_title','Social Media & Marketing '),(2254,234,'_team_members_10_team_member_title','field_646be76c1481b'),(2255,234,'team_members_10_team_member_bio','Daisy joined Raw Energy as a freelance consultant in March 2023. With a history working at Bulb Energy and for the Department of Business, Energy and Industrial Strategy Daisy oozes a passion for sustainability with a key interest in solar panels and wind energy. \r\nHer passion for sustainability is evident from her most recent expedition – rowing 3,000 miles across the Atlantic as an all female team of 4. Daisy\'s team ‘Full Throttle’ took on an additional 688 mile cycle to the start line in La Gomera, ahead of rowing across the Atlantic attempting to be the most carbon conscious campaign to date.\r\n'),(2256,234,'_team_members_10_team_member_bio','field_646be7781481c'),(2257,234,'team_members_11_team_member_photo','218'),(2258,234,'_team_members_11_team_member_photo','field_646be75714819'),(2259,234,'team_members_11_team_member_name','Harry Sismanidis '),(2260,234,'_team_members_11_team_member_name','field_646be7621481a'),(2261,234,'team_members_11_team_member_title','Asset Manager '),(2262,234,'_team_members_11_team_member_title','field_646be76c1481b'),(2263,234,'team_members_11_team_member_bio','Having worked as an Asset Manager for the past 10 years, Harry joined RAW Energy earlier this year. “I’m excited to work for Raw Energy, where I can transfer my Commercial and Project Management skillset through to the Renewable Energy sector.\r\n Harry is always keen to offer new ideas and solutions to optimise performance and increase the lifespan of any Assets we manage, currently working on our Anaerobic Digestion projects. You can email him here if you have any specific questions. \r\n'),(2264,234,'_team_members_11_team_member_bio','field_646be7781481c'),(2265,235,'hero_title','Our Team'),(2266,235,'_hero_title','field_646be59d7838d'),(2267,235,'hero_copy','We are a team of <strong>enthusiastic, likeminded, and efficient people</strong>, here to partner with those who share our values and our desire to make the world better for all.'),(2268,235,'_hero_copy','field_646be5a37838e'),(2269,235,'team_members_0_team_member_photo','223'),(2270,235,'_team_members_0_team_member_photo','field_646be75714819'),(2271,235,'team_members_0_team_member_name','Stuart Homewood'),(2272,235,'_team_members_0_team_member_name','field_646be7621481a'),(2273,235,'team_members_0_team_member_title','CEO'),(2274,235,'_team_members_0_team_member_title','field_646be76c1481b'),(2275,235,'team_members_0_team_member_bio','Following graduation from the RAC, Stuart joined Low Carbon. During the four and a half years that followed he developed large-scale solar PV projects under Low Carbon and then its successor Inazin. He personally developed over 175MW (880 acres), comprising of over 20 schemes from Cornwall to Lincolnshire, including the UK’s first three 5MW solar farms.\r\n\r\nStuart specialises in site identification, legal acquisition, planning consent and infrastructure connection to reliably deliver paper projects. Stuart has been through four project finances and two refinancing rounds successfully representing the developer and the asset owners to UK and Overseas buyers.\r\n\r\nStuart has worked at Raw Energy for over five years and now heads up the company.'),(2276,235,'_team_members_0_team_member_bio','field_646be7781481c'),(2277,235,'team_members','12'),(2278,235,'_team_members','field_646be74314818'),(2279,235,'join_our_team_title','Are you interested in joining our team?'),(2280,235,'_join_our_team_title','field_646be79e1481e'),(2281,235,'join_our_team_vacancies','Although we don\'t have any vacancies right now, we would love to hear from you. Please drop us an email with your CV'),(2282,235,'_join_our_team_vacancies','field_646be7b01481f'),(2283,235,'join_our_team_perks_0_single_perk','Want to make a difference in our evolving world?'),(2284,235,'_join_our_team_perks_0_single_perk','field_646be7d514821'),(2285,235,'join_our_team_perks_1_single_perk','Want to tackle climate change?'),(2286,235,'_join_our_team_perks_1_single_perk','field_646be7d514821'),(2287,235,'join_our_team_perks_2_single_perk','Want to work for a green energy company?'),(2288,235,'_join_our_team_perks_2_single_perk','field_646be7d514821'),(2289,235,'join_our_team_perks_3_single_perk','Have an interest in any of our services from anaerobic digestion to wind energy?'),(2290,235,'_join_our_team_perks_3_single_perk','field_646be7d514821'),(2291,235,'join_our_team_perks','4'),(2292,235,'_join_our_team_perks','field_646be7c514820'),(2293,235,'team_members_1_team_member_photo','219'),(2294,235,'_team_members_1_team_member_photo','field_646be75714819'),(2295,235,'team_members_1_team_member_name','Harriet Burrell-Knipe'),(2296,235,'_team_members_1_team_member_name','field_646be7621481a'),(2297,235,'team_members_1_team_member_title',' Project Delivery'),(2298,235,'_team_members_1_team_member_title','field_646be76c1481b'),(2299,235,'team_members_1_team_member_bio','Harriet joined Raw Autumn 2015 as Head of Project Delivery following 3 years with Inazin where she met Stuart.\r\n\r\nWhilst at Inazin she had a dual role of Project Coordinator and Grid Manager involved with the development of 173MW. \r\n\r\nHarriet project coordinates large-scale solar projects through development and due diligence, ensuring clean & organised paper projects. As Grid Manager she successfully builds relationships with Network Operators in both gas and electricity and has submitted 1000s of grid applications.'),(2300,235,'_team_members_1_team_member_bio','field_646be7781481c'),(2301,235,'team_members_2_team_member_photo','224'),(2302,235,'_team_members_2_team_member_photo','field_646be75714819'),(2303,235,'team_members_2_team_member_name','William Watts'),(2304,235,'_team_members_2_team_member_name','field_646be7621481a'),(2305,235,'team_members_2_team_member_title',''),(2306,235,'_team_members_2_team_member_title','field_646be76c1481b'),(2307,235,'team_members_2_team_member_bio','Founding member of Rabobank’s Renewables Finance Department, where he was Global Head of Solar investment. William was responsible for Rabo’s involvement in more than €1 Bio worth of Solar installations. He also managed transactions in Wind, Biofuels and Biomass.\r\n\r\nWilliam founded the Low Carbon Group, one of the largest developers of UK Solar installations and now successful fund manager, where he met Stuart.\r\n\r\nWilliam founded Raw in 2012 with the intention of making a diverse business group that addresses the pressing resource and sustainability problems of the 21st century in an ethical manner.'),(2308,235,'_team_members_2_team_member_bio','field_646be7781481c'),(2309,235,'team_members_3_team_member_photo','216'),(2310,235,'_team_members_3_team_member_photo','field_646be75714819'),(2311,235,'team_members_3_team_member_name','Robert Lamble'),(2312,235,'_team_members_3_team_member_name','field_646be7621481a'),(2313,235,'team_members_3_team_member_title','Consultant'),(2314,235,'_team_members_3_team_member_title','field_646be76c1481b'),(2315,235,'team_members_3_team_member_bio','Robert joined Raw Energy back in spring of 2022 after studying land management at the Royal Agricultural University. It was during his degree that he developed a key interest in renewable energy. Robert is one of the consultants here at Raw with a particular focus on Solar PV installation and portfolio management across both residential and commercial property. \r\n\r\n'),(2316,235,'_team_members_3_team_member_bio','field_646be7781481c'),(2317,235,'team_members_4_team_member_photo',''),(2318,235,'_team_members_4_team_member_photo','field_646be75714819'),(2319,235,'team_members_4_team_member_name','Sika'),(2320,235,'_team_members_4_team_member_name','field_646be7621481a'),(2321,235,'team_members_4_team_member_title','Office dog '),(2322,235,'_team_members_4_team_member_title','field_646be76c1481b'),(2323,235,'team_members_4_team_member_bio','The final member of the team is Sika, our very own office dog. Bedlington whippets are capable of up to thirty-five miles per hour, but you will rarely encounter him hitting these heady speeds in the office. He is chiefly responsible for taking lengthy naps and whilst he may not be the most productive member of the team, he certainly succeeds in keeping up morale with aplomb!\r\n'),(2324,235,'_team_members_4_team_member_bio','field_646be7781481c'),(2325,235,'team_members_5_team_member_photo','222'),(2326,235,'_team_members_5_team_member_photo','field_646be75714819'),(2327,235,'team_members_5_team_member_name','Zac Barrett'),(2328,235,'_team_members_5_team_member_name','field_646be7621481a'),(2329,235,'team_members_5_team_member_title','Solar Sales '),(2330,235,'_team_members_5_team_member_title','field_646be76c1481b'),(2331,235,'team_members_5_team_member_bio','Zac Joined Raw Energy in December 2022 to head up Residential and commercial solar. Coming from Wessex Internet (a rural broadband provider) Zac managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build.\r\n\r\nZac is very involved in solar sales and is excited to help build the ever-expanding team. \r\n\r\nIn his spare time is often found on a riverbank or wondering the British countryside with his mad spaniels. \r\n'),(2332,235,'_team_members_5_team_member_bio','field_646be7781481c'),(2333,235,'team_members_6_team_member_photo','217'),(2334,235,'_team_members_6_team_member_photo','field_646be75714819'),(2335,235,'team_members_6_team_member_name','Felix Ma'),(2336,235,'_team_members_6_team_member_name','field_646be7621481a'),(2337,235,'team_members_6_team_member_title','Renewable Energy Asset Manager'),(2338,235,'_team_members_6_team_member_title','field_646be76c1481b'),(2339,235,'team_members_6_team_member_bio','Felix joined Raw Energy back in the Winter of 2022 after working as an engineer for the industrial cooling sector. \r\n\r\nHe has a keen interest within the renewable energy sector since his childhood and has develop his technical skills through a degree in renewable energy engineering.\r\n\r\nFelix is working as a renewable energy asset manager, building and implementing the financial model for Raw Energy’s own bioenergy plant. \r\n'),(2340,235,'_team_members_6_team_member_bio','field_646be7781481c'),(2341,235,'team_members_7_team_member_photo',''),(2342,235,'_team_members_7_team_member_photo','field_646be75714819'),(2343,235,'team_members_7_team_member_name','Dave Vincent'),(2344,235,'_team_members_7_team_member_name','field_646be7621481a'),(2345,235,'team_members_7_team_member_title','Delivery Manager '),(2346,235,'_team_members_7_team_member_title','field_646be76c1481b'),(2347,235,'team_members_7_team_member_bio','Zac has recently Joined Raw (Winter 2022) to head up Residential and commercial solar for Raw. Coming from Wessex Internet (a rural broadband provider) he managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build. Zac has been very involved in sales and is excited to be joining the growing team at Raw in the renewable energy industry.'),(2348,235,'_team_members_7_team_member_bio','field_646be7781481c'),(2349,235,'team_members_8_team_member_photo',''),(2350,235,'_team_members_8_team_member_photo','field_646be75714819'),(2351,235,'team_members_8_team_member_name','Debbie Hipkin'),(2352,235,'_team_members_8_team_member_name','field_646be7621481a'),(2353,235,'team_members_8_team_member_title','Finance '),(2354,235,'_team_members_8_team_member_title','field_646be76c1481b'),(2355,235,'team_members_8_team_member_bio','Debbie joined Raw Energy in July 2022. Her accounts experience covers practise, small businesses and large international companies both in the UK and abroad. \r\nSince going self employed in 2006 Debbie has managed a client base of 5 different firms. Debbie has really enjoyed developing her knowledge of the sustainable projects Raw Energy work on and looks forward to the exciting future ahead. \r\n'),(2356,235,'_team_members_8_team_member_bio','field_646be7781481c'),(2357,235,'team_members_9_team_member_photo','221'),(2358,235,'_team_members_9_team_member_photo','field_646be75714819'),(2359,235,'team_members_9_team_member_name','Tim Collett'),(2360,235,'_team_members_9_team_member_name','field_646be7621481a'),(2361,235,'team_members_9_team_member_title','Administrator '),(2362,235,'_team_members_9_team_member_title','field_646be76c1481b'),(2363,235,'team_members_9_team_member_bio','Tim joined Raw Energy earlier this year after working for several years in hospitality management. Having made the decision to undergo a switch in career path has entered the renewable energy sector to forge a career in administration. \r\nIn his previous career Tim accrued a wealth of organisational and communication skills that are put to good use in his role here at Raw Energy. Tim oversees the administration needs of the business and directly assists the other members of the team with their daily operations. \r\n'),(2364,235,'_team_members_9_team_member_bio','field_646be7781481c'),(2365,235,'team_members_10_team_member_photo',''),(2366,235,'_team_members_10_team_member_photo','field_646be75714819'),(2367,235,'team_members_10_team_member_name','Daisy Lucker'),(2368,235,'_team_members_10_team_member_name','field_646be7621481a'),(2369,235,'team_members_10_team_member_title','Social Media & Marketing '),(2370,235,'_team_members_10_team_member_title','field_646be76c1481b'),(2371,235,'team_members_10_team_member_bio','Daisy joined Raw Energy as a freelance consultant in March 2023. With a history working at Bulb Energy and for the Department of Business, Energy and Industrial Strategy Daisy oozes a passion for sustainability with a key interest in solar panels and wind energy. \r\nHer passion for sustainability is evident from her most recent expedition – rowing 3,000 miles across the Atlantic as an all female team of 4. Daisy\'s team ‘Full Throttle’ took on an additional 688 mile cycle to the start line in La Gomera, ahead of rowing across the Atlantic attempting to be the most carbon conscious campaign to date.\r\n'),(2372,235,'_team_members_10_team_member_bio','field_646be7781481c'),(2373,235,'team_members_11_team_member_photo','218'),(2374,235,'_team_members_11_team_member_photo','field_646be75714819'),(2375,235,'team_members_11_team_member_name','Harry Sismanidis '),(2376,235,'_team_members_11_team_member_name','field_646be7621481a'),(2377,235,'team_members_11_team_member_title','Asset Manager '),(2378,235,'_team_members_11_team_member_title','field_646be76c1481b'),(2379,235,'team_members_11_team_member_bio','Having worked as an Asset Manager for the past 10 years, Harry joined RAW Energy earlier this year. “I’m excited to work for Raw Energy, where I can transfer my Commercial and Project Management skillset through to the Renewable Energy sector.\r\n Harry is always keen to offer new ideas and solutions to optimise performance and increase the lifespan of any Assets we manage, currently working on our Anaerobic Digestion projects. You can email him here if you have any specific questions. \r\n'),(2380,235,'_team_members_11_team_member_bio','field_646be7781481c'),(2381,236,'_wp_attached_file','2023/05/Screenshot-2023-06-06-at-15.10.43.png'),(2382,236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1682;s:6:\"height\";i:1260;s:4:\"file\";s:45:\"2023/05/Screenshot-2023-06-06-at-15.10.43.png\";s:8:\"filesize\";i:3238899;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-06-06-at-15.10.43-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97185;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-06-06-at-15.10.43-1024x767.png\";s:5:\"width\";i:1024;s:6:\"height\";i:767;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:964921;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-06-06-at-15.10.43-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35678;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-06-06-at-15.10.43-768x575.png\";s:5:\"width\";i:768;s:6:\"height\";i:575;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:563074;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-06-06-at-15.10.43-1536x1151.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1151;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2015901;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2383,238,'_wp_attached_file','2023/05/Screenshot-2023-06-06-at-15.12.34.png'),(2384,238,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1668;s:6:\"height\";i:1118;s:4:\"file\";s:45:\"2023/05/Screenshot-2023-06-06-at-15.12.34.png\";s:8:\"filesize\";i:3972350;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-06-06-at-15.12.34-300x201.png\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122514;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-06-06-at-15.12.34-1024x686.png\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1202180;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-06-06-at-15.12.34-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51963;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-06-06-at-15.12.34-768x515.png\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:701333;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"Screenshot-2023-06-06-at-15.12.34-1536x1030.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1030;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2554939;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2385,40,'_edit_last','1'),(2386,40,'intro','Raw Energy successfully financed and installed 2.9MW of biomass boilers in 5 locations.'),(2387,40,'_intro','field_646bdab61db3e'),(2388,40,'copy','In 2016 Raw Energy developed, financed, constructed and operated a 2.9MW portfolio of biomass boilers installed in third party commercial buildings in five locations. The boilers generate a stable 20 year index linked income stream from the UK government Renewable Heating Incentive (RHI) scheme. \r\n\r\nThis portfolio was then sold to a European fund with a return to investors of 1.6x. Following this work Raw Energy managed the sale of another tranche of schemes on behalf of other projects developers, and in the financial year 2017-18 Raw Energy completed the sale or refinance of biomass projects with total transaction values of over £6m.\r\n\r\nRaw Energy is an industry leader in the remedy of technical, contractual and operational issues on all renewable technologies prior to a sale and have strong relationships with funders looking to aggregate assets.'),(2389,40,'_copy','field_646bdad41db3f'),(2390,40,'stats_0_stat','2.9MW of biomass boilers in 5 locations'),(2391,40,'_stats_0_stat','field_646bdaf51db41'),(2392,40,'stats_1_stat','20 year index linked income stream'),(2393,40,'_stats_1_stat','field_646bdaf51db41'),(2394,40,'stats','3'),(2395,40,'_stats','field_646bdaec1db40'),(2396,40,'images',''),(2397,40,'_images','field_646bdb041db42'),(2398,239,'_wp_attached_file','2023/05/Screenshot-2023-06-06-at-15.12.34-1.png'),(2399,239,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1668;s:6:\"height\";i:1118;s:4:\"file\";s:47:\"2023/05/Screenshot-2023-06-06-at-15.12.34-1.png\";s:8:\"filesize\";i:3972350;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2400,241,'_wp_attached_file','2023/05/Screenshot-2023-06-06-at-15.13.45.png'),(2401,241,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1670;s:6:\"height\";i:948;s:4:\"file\";s:45:\"2023/05/Screenshot-2023-06-06-at-15.13.45.png\";s:8:\"filesize\";i:3588890;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-06-06-at-15.13.45-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102088;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-06-06-at-15.13.45-1024x581.png\";s:5:\"width\";i:1024;s:6:\"height\";i:581;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:936147;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-06-06-at-15.13.45-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46074;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"Screenshot-2023-06-06-at-15.13.45-768x436.png\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:564685;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"Screenshot-2023-06-06-at-15.13.45-1536x872.png\";s:5:\"width\";i:1536;s:6:\"height\";i:872;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1876537;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2402,39,'_edit_last','1'),(2403,39,'intro','Raw Energy has developed, managed, consulted for and operated a range of rooftop solar projects across the UK and further afield.'),(2404,39,'_intro','field_646bdab61db3e'),(2405,39,'copy','The directors and founders of the company were involved in the first large-scale subsidy backed European solar developments thus bringing a comprehensive understanding of the Feed-in-Tariff before its arrival on UK shores.\r\n\r\nIn 2020 Raw sold its own portfolio of commercial solar rooftop projects to a UK O&M firm supported by London based bonds. \r\n\r\nIn Q3 2020 Raw managed the successful sale of a similar but larger portfolio owned by a London based investment house.\r\n\r\nPrevious work includes the development of over 180MW ground mount and asset management of over £20million worth of solar assets.'),(2406,39,'_copy','field_646bdad41db3f'),(2407,39,'stats',''),(2408,39,'_stats','field_646bdaec1db40'),(2409,39,'images',''),(2410,39,'_images','field_646bdb041db42'),(2411,242,'_wp_attached_file','2023/06/missing-profile-picture-1.jpg.webp'),(2412,242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:42:\"2023/06/missing-profile-picture-1.jpg.webp\";s:8:\"filesize\";i:5126;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"missing-profile-picture-1.jpg-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1498;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"missing-profile-picture-1.jpg-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:764;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"missing-profile-picture-1.jpg-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4226;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2413,243,'hero_title','Our Team'),(2414,243,'_hero_title','field_646be59d7838d'),(2415,243,'hero_copy','We are a team of <strong>enthusiastic, likeminded, and efficient people</strong>, here to partner with those who share our values and our desire to make the world better for all.'),(2416,243,'_hero_copy','field_646be5a37838e'),(2417,243,'team_members_0_team_member_photo','223'),(2418,243,'_team_members_0_team_member_photo','field_646be75714819'),(2419,243,'team_members_0_team_member_name','Stuart Homewood'),(2420,243,'_team_members_0_team_member_name','field_646be7621481a'),(2421,243,'team_members_0_team_member_title','CEO'),(2422,243,'_team_members_0_team_member_title','field_646be76c1481b'),(2423,243,'team_members_0_team_member_bio','Following graduation from the RAC, Stuart joined Low Carbon. During the four and a half years that followed he developed large-scale solar PV projects under Low Carbon and then its successor Inazin. He personally developed over 175MW (880 acres), comprising of over 20 schemes from Cornwall to Lincolnshire, including the UK’s first three 5MW solar farms.\r\n\r\nStuart specialises in site identification, legal acquisition, planning consent and infrastructure connection to reliably deliver paper projects. Stuart has been through four project finances and two refinancing rounds successfully representing the developer and the asset owners to UK and Overseas buyers.\r\n\r\nStuart has worked at Raw Energy for over five years and now heads up the company.'),(2424,243,'_team_members_0_team_member_bio','field_646be7781481c'),(2425,243,'team_members','12'),(2426,243,'_team_members','field_646be74314818'),(2427,243,'join_our_team_title','Are you interested in joining our team?'),(2428,243,'_join_our_team_title','field_646be79e1481e'),(2429,243,'join_our_team_vacancies','Although we don\'t have any vacancies right now, we would love to hear from you. Please drop us an email with your CV'),(2430,243,'_join_our_team_vacancies','field_646be7b01481f'),(2431,243,'join_our_team_perks_0_single_perk','Want to make a difference in our evolving world?'),(2432,243,'_join_our_team_perks_0_single_perk','field_646be7d514821'),(2433,243,'join_our_team_perks_1_single_perk','Want to tackle climate change?'),(2434,243,'_join_our_team_perks_1_single_perk','field_646be7d514821'),(2435,243,'join_our_team_perks_2_single_perk','Want to work for a green energy company?'),(2436,243,'_join_our_team_perks_2_single_perk','field_646be7d514821'),(2437,243,'join_our_team_perks_3_single_perk','Have an interest in any of our services from anaerobic digestion to wind energy?'),(2438,243,'_join_our_team_perks_3_single_perk','field_646be7d514821'),(2439,243,'join_our_team_perks','4'),(2440,243,'_join_our_team_perks','field_646be7c514820'),(2441,243,'team_members_1_team_member_photo','219'),(2442,243,'_team_members_1_team_member_photo','field_646be75714819'),(2443,243,'team_members_1_team_member_name','Harriet Burrell-Knipe'),(2444,243,'_team_members_1_team_member_name','field_646be7621481a'),(2445,243,'team_members_1_team_member_title',' Project Delivery'),(2446,243,'_team_members_1_team_member_title','field_646be76c1481b'),(2447,243,'team_members_1_team_member_bio','Harriet joined Raw Autumn 2015 as Head of Project Delivery following 3 years with Inazin where she met Stuart.\r\n\r\nWhilst at Inazin she had a dual role of Project Coordinator and Grid Manager involved with the development of 173MW. \r\n\r\nHarriet project coordinates large-scale solar projects through development and due diligence, ensuring clean & organised paper projects. As Grid Manager she successfully builds relationships with Network Operators in both gas and electricity and has submitted 1000s of grid applications.'),(2448,243,'_team_members_1_team_member_bio','field_646be7781481c'),(2449,243,'team_members_2_team_member_photo','224'),(2450,243,'_team_members_2_team_member_photo','field_646be75714819'),(2451,243,'team_members_2_team_member_name','William Watts'),(2452,243,'_team_members_2_team_member_name','field_646be7621481a'),(2453,243,'team_members_2_team_member_title',''),(2454,243,'_team_members_2_team_member_title','field_646be76c1481b'),(2455,243,'team_members_2_team_member_bio','Founding member of Rabobank’s Renewables Finance Department, where he was Global Head of Solar investment. William was responsible for Rabo’s involvement in more than €1 Bio worth of Solar installations. He also managed transactions in Wind, Biofuels and Biomass.\r\n\r\nWilliam founded the Low Carbon Group, one of the largest developers of UK Solar installations and now successful fund manager, where he met Stuart.\r\n\r\nWilliam founded Raw in 2012 with the intention of making a diverse business group that addresses the pressing resource and sustainability problems of the 21st century in an ethical manner.'),(2456,243,'_team_members_2_team_member_bio','field_646be7781481c'),(2457,243,'team_members_3_team_member_photo','216'),(2458,243,'_team_members_3_team_member_photo','field_646be75714819'),(2459,243,'team_members_3_team_member_name','Robert Lamble'),(2460,243,'_team_members_3_team_member_name','field_646be7621481a'),(2461,243,'team_members_3_team_member_title','Consultant'),(2462,243,'_team_members_3_team_member_title','field_646be76c1481b'),(2463,243,'team_members_3_team_member_bio','Robert joined Raw Energy back in spring of 2022 after studying land management at the Royal Agricultural University. It was during his degree that he developed a key interest in renewable energy. Robert is one of the consultants here at Raw with a particular focus on Solar PV installation and portfolio management across both residential and commercial property. \r\n\r\n'),(2464,243,'_team_members_3_team_member_bio','field_646be7781481c'),(2465,243,'team_members_4_team_member_photo','242'),(2466,243,'_team_members_4_team_member_photo','field_646be75714819'),(2467,243,'team_members_4_team_member_name','Sika'),(2468,243,'_team_members_4_team_member_name','field_646be7621481a'),(2469,243,'team_members_4_team_member_title','Office dog '),(2470,243,'_team_members_4_team_member_title','field_646be76c1481b'),(2471,243,'team_members_4_team_member_bio','The final member of the team is Sika, our very own office dog. Bedlington whippets are capable of up to thirty-five miles per hour, but you will rarely encounter him hitting these heady speeds in the office. He is chiefly responsible for taking lengthy naps and whilst he may not be the most productive member of the team, he certainly succeeds in keeping up morale with aplomb!\r\n'),(2472,243,'_team_members_4_team_member_bio','field_646be7781481c'),(2473,243,'team_members_5_team_member_photo','222'),(2474,243,'_team_members_5_team_member_photo','field_646be75714819'),(2475,243,'team_members_5_team_member_name','Zac Barrett'),(2476,243,'_team_members_5_team_member_name','field_646be7621481a'),(2477,243,'team_members_5_team_member_title','Solar Sales '),(2478,243,'_team_members_5_team_member_title','field_646be76c1481b'),(2479,243,'team_members_5_team_member_bio','Zac Joined Raw Energy in December 2022 to head up Residential and commercial solar. Coming from Wessex Internet (a rural broadband provider) Zac managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build.\r\n\r\nZac is very involved in solar sales and is excited to help build the ever-expanding team. \r\n\r\nIn his spare time is often found on a riverbank or wondering the British countryside with his mad spaniels. \r\n'),(2480,243,'_team_members_5_team_member_bio','field_646be7781481c'),(2481,243,'team_members_6_team_member_photo','217'),(2482,243,'_team_members_6_team_member_photo','field_646be75714819'),(2483,243,'team_members_6_team_member_name','Felix Ma'),(2484,243,'_team_members_6_team_member_name','field_646be7621481a'),(2485,243,'team_members_6_team_member_title','Renewable Energy Asset Manager'),(2486,243,'_team_members_6_team_member_title','field_646be76c1481b'),(2487,243,'team_members_6_team_member_bio','Felix joined Raw Energy back in the Winter of 2022 after working as an engineer for the industrial cooling sector. \r\n\r\nHe has a keen interest within the renewable energy sector since his childhood and has develop his technical skills through a degree in renewable energy engineering.\r\n\r\nFelix is working as a renewable energy asset manager, building and implementing the financial model for Raw Energy’s own bioenergy plant. \r\n'),(2488,243,'_team_members_6_team_member_bio','field_646be7781481c'),(2489,243,'team_members_7_team_member_photo','242'),(2490,243,'_team_members_7_team_member_photo','field_646be75714819'),(2491,243,'team_members_7_team_member_name','Dave Vincent'),(2492,243,'_team_members_7_team_member_name','field_646be7621481a'),(2493,243,'team_members_7_team_member_title','Delivery Manager '),(2494,243,'_team_members_7_team_member_title','field_646be76c1481b'),(2495,243,'team_members_7_team_member_bio','Zac has recently Joined Raw (Winter 2022) to head up Residential and commercial solar for Raw. Coming from Wessex Internet (a rural broadband provider) he managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build. Zac has been very involved in sales and is excited to be joining the growing team at Raw in the renewable energy industry.'),(2496,243,'_team_members_7_team_member_bio','field_646be7781481c'),(2497,243,'team_members_8_team_member_photo','242'),(2498,243,'_team_members_8_team_member_photo','field_646be75714819'),(2499,243,'team_members_8_team_member_name','Debbie Hipkin'),(2500,243,'_team_members_8_team_member_name','field_646be7621481a'),(2501,243,'team_members_8_team_member_title','Finance '),(2502,243,'_team_members_8_team_member_title','field_646be76c1481b'),(2503,243,'team_members_8_team_member_bio','Debbie joined Raw Energy in July 2022. Her accounts experience covers practise, small businesses and large international companies both in the UK and abroad. \r\nSince going self employed in 2006 Debbie has managed a client base of 5 different firms. Debbie has really enjoyed developing her knowledge of the sustainable projects Raw Energy work on and looks forward to the exciting future ahead. \r\n'),(2504,243,'_team_members_8_team_member_bio','field_646be7781481c'),(2505,243,'team_members_9_team_member_photo','221'),(2506,243,'_team_members_9_team_member_photo','field_646be75714819'),(2507,243,'team_members_9_team_member_name','Tim Collett'),(2508,243,'_team_members_9_team_member_name','field_646be7621481a'),(2509,243,'team_members_9_team_member_title','Administrator '),(2510,243,'_team_members_9_team_member_title','field_646be76c1481b'),(2511,243,'team_members_9_team_member_bio','Tim joined Raw Energy earlier this year after working for several years in hospitality management. Having made the decision to undergo a switch in career path has entered the renewable energy sector to forge a career in administration. \r\nIn his previous career Tim accrued a wealth of organisational and communication skills that are put to good use in his role here at Raw Energy. Tim oversees the administration needs of the business and directly assists the other members of the team with their daily operations. \r\n'),(2512,243,'_team_members_9_team_member_bio','field_646be7781481c'),(2513,243,'team_members_10_team_member_photo','242'),(2514,243,'_team_members_10_team_member_photo','field_646be75714819'),(2515,243,'team_members_10_team_member_name','Daisy Lucker'),(2516,243,'_team_members_10_team_member_name','field_646be7621481a'),(2517,243,'team_members_10_team_member_title','Social Media & Marketing '),(2518,243,'_team_members_10_team_member_title','field_646be76c1481b'),(2519,243,'team_members_10_team_member_bio','Daisy joined Raw Energy as a freelance consultant in March 2023. With a history working at Bulb Energy and for the Department of Business, Energy and Industrial Strategy Daisy oozes a passion for sustainability with a key interest in solar panels and wind energy. \r\nHer passion for sustainability is evident from her most recent expedition – rowing 3,000 miles across the Atlantic as an all female team of 4. Daisy\'s team ‘Full Throttle’ took on an additional 688 mile cycle to the start line in La Gomera, ahead of rowing across the Atlantic attempting to be the most carbon conscious campaign to date.\r\n'),(2520,243,'_team_members_10_team_member_bio','field_646be7781481c'),(2521,243,'team_members_11_team_member_photo','218'),(2522,243,'_team_members_11_team_member_photo','field_646be75714819'),(2523,243,'team_members_11_team_member_name','Harry Sismanidis '),(2524,243,'_team_members_11_team_member_name','field_646be7621481a'),(2525,243,'team_members_11_team_member_title','Asset Manager '),(2526,243,'_team_members_11_team_member_title','field_646be76c1481b'),(2527,243,'team_members_11_team_member_bio','Having worked as an Asset Manager for the past 10 years, Harry joined RAW Energy earlier this year. “I’m excited to work for Raw Energy, where I can transfer my Commercial and Project Management skillset through to the Renewable Energy sector.\r\n Harry is always keen to offer new ideas and solutions to optimise performance and increase the lifespan of any Assets we manage, currently working on our Anaerobic Digestion projects. You can email him here if you have any specific questions. \r\n'),(2528,243,'_team_members_11_team_member_bio','field_646be7781481c'),(2529,245,'_wp_attached_file','2023/06/345119905_216613924518006_337061852609538107_n.png'),(2530,245,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1105;s:6:\"height\";i:587;s:4:\"file\";s:58:\"2023/06/345119905_216613924518006_337061852609538107_n.png\";s:8:\"filesize\";i:71399;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"345119905_216613924518006_337061852609538107_n-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17211;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"345119905_216613924518006_337061852609538107_n-1024x544.png\";s:5:\"width\";i:1024;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84129;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"345119905_216613924518006_337061852609538107_n-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8904;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"345119905_216613924518006_337061852609538107_n-768x408.png\";s:5:\"width\";i:768;s:6:\"height\";i:408;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58208;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2531,33,'faqs',''),(2532,33,'_faqs','field_6477581d05ac7'),(2533,6,'_oembed_60bf2883a9a946859fdd48983a27f625','<iframe title=\"RAWNRG.mp4\" src=\"https://player.vimeo.com/video/745798278?dnt=1&app_id=122963\" width=\"640\" height=\"360\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),(2534,6,'_oembed_time_60bf2883a9a946859fdd48983a27f625','1687551073'),(2535,250,'hero_carousel_0_slide_background_type','video'),(2536,250,'_hero_carousel_0_slide_background_type','field_646b85a69b754'),(2537,250,'hero_carousel_0_slide_image','15'),(2538,250,'_hero_carousel_0_slide_image','field_646b85c69b755'),(2539,250,'hero_carousel_0_slide_title',''),(2540,250,'_hero_carousel_0_slide_title','field_646b85ed9b757'),(2541,250,'hero_carousel_0_slide_subtitle',''),(2542,250,'_hero_carousel_0_slide_subtitle','field_646b85f99b758'),(2543,250,'hero_carousel','2'),(2544,250,'_hero_carousel','field_646b85999b753'),(2545,250,'featured_services_title','Domestic & Commercial Savings'),(2546,250,'_featured_services_title','field_646b9635ea0a4'),(2547,250,'services_title','Raw Energy\'s other services'),(2548,250,'_services_title','field_646b964aea0a5'),(2549,250,'ratings_title','Don’t just take our word for it'),(2550,250,'_ratings_title','field_646b86339b75a'),(2551,250,'hero_carousel_0_slide_video','https://vimeo.com/745798278'),(2552,250,'_hero_carousel_0_slide_video','field_646b85db9b756'),(2553,250,'hero_carousel_1_slide_background_type','image'),(2554,250,'_hero_carousel_1_slide_background_type','field_646b85a69b754'),(2555,250,'hero_carousel_1_slide_video','https://vimeo.com/745798278'),(2556,250,'_hero_carousel_1_slide_video','field_646b85db9b756'),(2557,250,'hero_carousel_1_slide_title','Power your home with a 4kw fully installed system from £7,250'),(2558,250,'_hero_carousel_1_slide_title','field_646b85ed9b757'),(2559,250,'hero_carousel_1_slide_subtitle','Include battery storage for a further £2,740 to maximise the benefits of home solar'),(2560,250,'_hero_carousel_1_slide_subtitle','field_646b85f99b758'),(2561,250,'hero_carousel_1_slide_image','15'),(2562,250,'_hero_carousel_1_slide_image','field_646b85c69b755'),(2563,32,'faqs',''),(2564,32,'_faqs','field_6477581d05ac7'),(2565,29,'faqs','4'),(2566,29,'_faqs','field_6477581d05ac7'),(2567,30,'importance_copy_title',''),(2568,30,'_importance_copy_title','field_647752539dc40'),(2569,30,'faqs',''),(2570,30,'_faqs','field_6477581d05ac7'),(2571,28,'faqs',''),(2572,28,'_faqs','field_6477581d05ac7'),(2573,34,'importance_copy_title',''),(2574,34,'_importance_copy_title','field_647752539dc40'),(2575,34,'faqs',''),(2576,34,'_faqs','field_6477581d05ac7'),(2577,37,'faqs',''),(2578,37,'_faqs','field_6477581d05ac7'),(2579,40,'stats_2_stat','3rd party portfolio sold for over £6million'),(2580,40,'_stats_2_stat','field_646bdaf51db41'),(2581,251,'_edit_lock','1689320353:2'),(2582,251,'_edit_last','3'),(2583,251,'intro','Raw Energy successfully developed, financed and manage a 3MW anaerobic digestion plant in Wiltshire.'),(2584,251,'_intro','field_646bdab61db3e'),(2585,251,'copy','This is a 50,000 tonnes per annum facility, processing food and agricultural wastes alongside some farm crops. This plant uses two digesters in parallel to generate over 900m3 of biogas per hour. This biogas is then cleaned and augmented into biomethane which is exported directly into the local gas network, producing enough gas for the demands of over 5,000 homes. As part of the process the plant generates approximately 40,000 tonnes of biofertiliser annually which is sufficient to nourish 5,000 acres of farmland in the vicinity replacing the need for manmade fertiliser to be used. \r\n\r\nAfter developing this greenfield site, Raw Energy arranged the finance and ran the due diligence process and data room for this project bringing together SWEN Capital Partners, HoSt Bioenergy Systems and Real Asset Wealth. \r\n\r\nRaw Energy oversaw the construction of the plant from breaking ground until performance testing which was successfully achieved in 2022. We manage the plant, overseeing the operator, contractors, suppliers and contracts. '),(2586,251,'_copy','field_646bdad41db3f'),(2587,251,'stats_0_stat','3MW of installed capacity'),(2588,251,'_stats_0_stat','field_646bdaf51db41'),(2589,251,'stats_1_stat','600m3 per hour of gas injected into the grid'),(2590,251,'_stats_1_stat','field_646bdaf51db41'),(2591,251,'stats_2_stat','20 year index RHI tariff'),(2592,251,'_stats_2_stat','field_646bdaf51db41'),(2593,251,'stats','3'),(2594,251,'_stats','field_646bdaec1db40'),(2595,251,'images',''),(2596,251,'_images','field_646bdb041db42'),(2597,252,'_wp_attached_file','2023/07/Page-1-CPBL-220426.jpg'),(2598,252,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:30:\"2023/07/Page-1-CPBL-220426.jpg\";s:8:\"filesize\";i:128613;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Page-1-CPBL-220426-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13889;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Page-1-CPBL-220426-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5229;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Page-1-CPBL-220426-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81181;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2599,251,'_thumbnail_id','252'),(2600,253,'_wp_attached_file','2023/05/Commerical-solar-for-home-page-banner-scaled-e1688988784407.jpg'),(2601,253,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:71:\"2023/05/Commerical-solar-for-home-page-banner-scaled-e1688988784407.jpg\";s:8:\"filesize\";i:617630;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"Commerical-solar-for-home-page-banner-scaled-e1688988784407-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13440;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"Commerical-solar-for-home-page-banner-scaled-e1688988784407-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123970;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"Commerical-solar-for-home-page-banner-scaled-e1688988784407-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5098;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:71:\"Commerical-solar-for-home-page-banner-scaled-e1688988784407-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75037;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:73:\"Commerical-solar-for-home-page-banner-scaled-e1688988784407-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253990;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:73:\"Commerical-solar-for-home-page-banner-scaled-e1688988784407-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:410634;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:41:\"Commerical-solar-for-home-page-banner.jpg\";}'),(2602,253,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:48:\"Commerical-solar-for-home-page-banner-scaled.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:49:\"Commerical-solar-for-home-page-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5074;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:49:\"Commerical-solar-for-home-page-banner-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13449;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:49:\"Commerical-solar-for-home-page-banner-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76710;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:50:\"Commerical-solar-for-home-page-banner-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125995;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:51:\"Commerical-solar-for-home-page-banner-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256099;}s:14:\"2048x2048-orig\";a:5:{s:4:\"file\";s:51:\"Commerical-solar-for-home-page-banner-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:425212;}}'),(2603,254,'_edit_lock','1688989697:3'),(2604,254,'_edit_last','3'),(2605,255,'_wp_attached_file','2023/07/35-Saxon-Close-e1688989712119.jpg'),(2606,255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:41:\"2023/07/35-Saxon-Close-e1688989712119.jpg\";s:8:\"filesize\";i:727004;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"35-Saxon-Close-e1688989712119-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16378;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"35-Saxon-Close-e1688989712119-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146918;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"35-Saxon-Close-e1688989712119-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5969;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"35-Saxon-Close-e1688989712119-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88541;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"35-Saxon-Close-e1688989712119-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:295726;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2607,255,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:18:\"35-Saxon-Close.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:26:\"35-Saxon-Close-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5969;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:26:\"35-Saxon-Close-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16378;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:26:\"35-Saxon-Close-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88541;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:27:\"35-Saxon-Close-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146918;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:28:\"35-Saxon-Close-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:295726;}}'),(2608,254,'_thumbnail_id','255'),(2609,254,'intro','Raw Energy are MSC accredited and have experienced design and delivery teams in-house'),(2610,254,'_intro','field_646bdab61db3e'),(2611,254,'copy','Having worked on solar PV since the company\'s inception in 2012 it was a very natural progression for the company into the delivery of home solar in 2022.\r\n\r\nSince then we have installed hundreds of modules and this is the fastest growing part of Raw Energy.\r\n'),(2612,254,'_copy','field_646bdad41db3f'),(2613,254,'stats_0_stat','Bespoke in-house design for each system'),(2614,254,'_stats_0_stat','field_646bdaf51db41'),(2615,254,'stats_1_stat','Excellent working relationships with District Network Operators (DNOs)'),(2616,254,'_stats_1_stat','field_646bdaf51db41'),(2617,254,'stats_2_stat','Procurement and supply chain management'),(2618,254,'_stats_2_stat','field_646bdaf51db41'),(2619,254,'stats_3_stat','Employed fully qualified electrical staff'),(2620,254,'_stats_3_stat','field_646bdaf51db41'),(2621,254,'stats_4_stat','Monitoring and maintenance with more than 400 systems under management to date'),(2622,254,'_stats_4_stat','field_646bdaf51db41'),(2623,254,'stats_5_stat',''),(2624,254,'_stats_5_stat','field_646bdaf51db41'),(2625,254,'stats','6'),(2626,254,'_stats','field_646bdaec1db40'),(2627,254,'images',''),(2628,254,'_images','field_646bdb041db42'),(2629,256,'_edit_lock','1688990169:3'),(2630,256,'_edit_last','3'),(2631,256,'intro','Raw Energy manages a portfolio of operational gas to grid and CHP anaerobic digestion (AD) plants across the UK'),(2632,256,'_intro','field_646bdab61db3e'),(2633,256,'copy','In 2020 Raw Energy was taken on to asset manage a portfolio of seven AD plants, overseeing the operators, contractors, suppliers and contracts.\r\n\r\nAt the outset of this work, not all of the assets were fully operational and performance was suppressed. \r\n\r\nIn 2016 Raw Energy developed, financed, constructed and operated a 2.9MW portfolio of biomass boilers installed in third party commercial buildings in five locations. The boilers generate a stable 20 year index linked income stream from the UK government Renewable Heating Incentive (RHI) scheme.\r\n\r\nThis portfolio was then sold to a European fund with a return to investors of 1.6x. Following this work Raw Energy managed the sale of another tranche of schemes on behalf of other projects developers, and in the financial year 2017-18 Raw Energy completed the sale or refinance of biomass projects with total transaction values of over £6m.\r\n\r\nRaw Energy is an industry leader in the remedy of technical, contractual and operational issues on all renewable technologies prior to a sale and have strong relationships with funders looking to aggregate assets.\r\n\r\n\r\n\r\n2.9MW of biomass boilers in 5 locations\r\n20 year index linked income stream\r\n3rd party portfolio sold for over £6million'),(2634,256,'_copy','field_646bdad41db3f'),(2635,256,'stats',''),(2636,256,'_stats','field_646bdaec1db40'),(2637,256,'images',''),(2638,256,'_images','field_646bdb041db42'),(2639,257,'hero_title','Our Team'),(2640,257,'_hero_title','field_646be59d7838d'),(2641,257,'hero_copy','We are a team of <strong>enthusiastic, likeminded, and efficient people</strong>, here to work with those who share our values.'),(2642,257,'_hero_copy','field_646be5a37838e'),(2643,257,'team_members_0_team_member_photo','223'),(2644,257,'_team_members_0_team_member_photo','field_646be75714819'),(2645,257,'team_members_0_team_member_name','Stuart Homewood'),(2646,257,'_team_members_0_team_member_name','field_646be7621481a'),(2647,257,'team_members_0_team_member_title','CEO'),(2648,257,'_team_members_0_team_member_title','field_646be76c1481b'),(2649,257,'team_members_0_team_member_bio','Following graduation from the RAC, Stuart joined Low Carbon. During the four and a half years that followed he developed large-scale solar PV projects under Low Carbon and then its successor Inazin. He personally developed over 175MW (880 acres), comprising of over 20 schemes from Cornwall to Lincolnshire, including the UK’s first three 5MW solar farms.\r\n\r\nStuart specialises in site identification, legal acquisition, planning consent and infrastructure connection to reliably deliver paper projects. Stuart has been through four project finances and two refinancing rounds successfully representing the developer and the asset owners to UK and Overseas buyers.\r\n\r\nStuart has worked at Raw Energy for over five years and now heads up the company.'),(2650,257,'_team_members_0_team_member_bio','field_646be7781481c'),(2651,257,'team_members','12'),(2652,257,'_team_members','field_646be74314818'),(2653,257,'join_our_team_title','Are you interested in joining our team?'),(2654,257,'_join_our_team_title','field_646be79e1481e'),(2655,257,'join_our_team_vacancies','Although we don\'t have any vacancies right now, we would love to hear from you. Please drop us an email with your CV'),(2656,257,'_join_our_team_vacancies','field_646be7b01481f'),(2657,257,'join_our_team_perks_0_single_perk','Want to make a difference in our evolving world?'),(2658,257,'_join_our_team_perks_0_single_perk','field_646be7d514821'),(2659,257,'join_our_team_perks_1_single_perk','Want to tackle climate change?'),(2660,257,'_join_our_team_perks_1_single_perk','field_646be7d514821'),(2661,257,'join_our_team_perks_2_single_perk','Want to work for a green energy company?'),(2662,257,'_join_our_team_perks_2_single_perk','field_646be7d514821'),(2663,257,'join_our_team_perks_3_single_perk','Have an interest in any of our services from anaerobic digestion to wind energy?'),(2664,257,'_join_our_team_perks_3_single_perk','field_646be7d514821'),(2665,257,'join_our_team_perks','4'),(2666,257,'_join_our_team_perks','field_646be7c514820'),(2667,257,'team_members_1_team_member_photo','219'),(2668,257,'_team_members_1_team_member_photo','field_646be75714819'),(2669,257,'team_members_1_team_member_name','Harriet Burrell-Knipe'),(2670,257,'_team_members_1_team_member_name','field_646be7621481a'),(2671,257,'team_members_1_team_member_title',' Project Delivery'),(2672,257,'_team_members_1_team_member_title','field_646be76c1481b'),(2673,257,'team_members_1_team_member_bio','Harriet joined Raw Autumn 2015 as Head of Project Delivery following 3 years with Inazin where she met Stuart.\r\n\r\nWhilst at Inazin she had a dual role of Project Coordinator and Grid Manager involved with the development of 173MW. \r\n\r\nHarriet project coordinates large-scale solar projects through development and due diligence, ensuring clean & organised paper projects. As Grid Manager she successfully builds relationships with Network Operators in both gas and electricity and has submitted 1000s of grid applications.'),(2674,257,'_team_members_1_team_member_bio','field_646be7781481c'),(2675,257,'team_members_2_team_member_photo','224'),(2676,257,'_team_members_2_team_member_photo','field_646be75714819'),(2677,257,'team_members_2_team_member_name','William Watts'),(2678,257,'_team_members_2_team_member_name','field_646be7621481a'),(2679,257,'team_members_2_team_member_title',''),(2680,257,'_team_members_2_team_member_title','field_646be76c1481b'),(2681,257,'team_members_2_team_member_bio','Founding member of Rabobank’s Renewables Finance Department, where he was Global Head of Solar investment. William was responsible for Rabo’s involvement in more than €1 Bio worth of Solar installations. He also managed transactions in Wind, Biofuels and Biomass.\r\n\r\nWilliam founded the Low Carbon Group, one of the largest developers of UK Solar installations and now successful fund manager, where he met Stuart.\r\n\r\nWilliam founded Raw in 2012 with the intention of making a diverse business group that addresses the pressing resource and sustainability problems of the 21st century in an ethical manner.'),(2682,257,'_team_members_2_team_member_bio','field_646be7781481c'),(2683,257,'team_members_3_team_member_photo','216'),(2684,257,'_team_members_3_team_member_photo','field_646be75714819'),(2685,257,'team_members_3_team_member_name','Robert Lamble'),(2686,257,'_team_members_3_team_member_name','field_646be7621481a'),(2687,257,'team_members_3_team_member_title','Consultant'),(2688,257,'_team_members_3_team_member_title','field_646be76c1481b'),(2689,257,'team_members_3_team_member_bio','Robert joined Raw Energy back in spring of 2022 after studying land management at the Royal Agricultural University. It was during his degree that he developed a key interest in renewable energy. Robert is one of the consultants here at Raw with a particular focus on Solar PV installation and portfolio management across both residential and commercial property. \r\n\r\n'),(2690,257,'_team_members_3_team_member_bio','field_646be7781481c'),(2691,257,'team_members_4_team_member_photo','242'),(2692,257,'_team_members_4_team_member_photo','field_646be75714819'),(2693,257,'team_members_4_team_member_name','Sika'),(2694,257,'_team_members_4_team_member_name','field_646be7621481a'),(2695,257,'team_members_4_team_member_title','Office dog '),(2696,257,'_team_members_4_team_member_title','field_646be76c1481b'),(2697,257,'team_members_4_team_member_bio','The final member of the team is Sika, our very own office dog. Bedlington whippets are capable of up to thirty-five miles per hour, but you will rarely encounter him hitting these heady speeds in the office. He is chiefly responsible for taking lengthy naps and whilst he may not be the most productive member of the team, he certainly succeeds in keeping up morale with aplomb!\r\n'),(2698,257,'_team_members_4_team_member_bio','field_646be7781481c'),(2699,257,'team_members_5_team_member_photo','222'),(2700,257,'_team_members_5_team_member_photo','field_646be75714819'),(2701,257,'team_members_5_team_member_name','Zac Barrett'),(2702,257,'_team_members_5_team_member_name','field_646be7621481a'),(2703,257,'team_members_5_team_member_title','Solar Sales '),(2704,257,'_team_members_5_team_member_title','field_646be76c1481b'),(2705,257,'team_members_5_team_member_bio','Zac Joined Raw Energy in December 2022 to head up Residential and commercial solar. Coming from Wessex Internet (a rural broadband provider) Zac managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build.\r\n\r\nZac is very involved in solar sales and is excited to help build the ever-expanding team. \r\n\r\nIn his spare time is often found on a riverbank or wondering the British countryside with his mad spaniels. \r\n'),(2706,257,'_team_members_5_team_member_bio','field_646be7781481c'),(2707,257,'team_members_6_team_member_photo','217'),(2708,257,'_team_members_6_team_member_photo','field_646be75714819'),(2709,257,'team_members_6_team_member_name','Felix Ma'),(2710,257,'_team_members_6_team_member_name','field_646be7621481a'),(2711,257,'team_members_6_team_member_title','Renewable Energy Asset Manager'),(2712,257,'_team_members_6_team_member_title','field_646be76c1481b'),(2713,257,'team_members_6_team_member_bio','Felix joined Raw Energy back in the Winter of 2022 after working as an engineer for the industrial cooling sector. \r\n\r\nHe has a keen interest within the renewable energy sector since his childhood and has develop his technical skills through a degree in renewable energy engineering.\r\n\r\nFelix is working as a renewable energy asset manager, building and implementing the financial model for Raw Energy’s own bioenergy plant. \r\n'),(2714,257,'_team_members_6_team_member_bio','field_646be7781481c'),(2715,257,'team_members_7_team_member_photo','242'),(2716,257,'_team_members_7_team_member_photo','field_646be75714819'),(2717,257,'team_members_7_team_member_name','Dave Vincent'),(2718,257,'_team_members_7_team_member_name','field_646be7621481a'),(2719,257,'team_members_7_team_member_title','Delivery Manager '),(2720,257,'_team_members_7_team_member_title','field_646be76c1481b'),(2721,257,'team_members_7_team_member_bio','Zac has recently Joined Raw (Winter 2022) to head up Residential and commercial solar for Raw. Coming from Wessex Internet (a rural broadband provider) he managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build. Zac has been very involved in sales and is excited to be joining the growing team at Raw in the renewable energy industry.'),(2722,257,'_team_members_7_team_member_bio','field_646be7781481c'),(2723,257,'team_members_8_team_member_photo','242'),(2724,257,'_team_members_8_team_member_photo','field_646be75714819'),(2725,257,'team_members_8_team_member_name','Debbie Hipkin'),(2726,257,'_team_members_8_team_member_name','field_646be7621481a'),(2727,257,'team_members_8_team_member_title','Finance '),(2728,257,'_team_members_8_team_member_title','field_646be76c1481b'),(2729,257,'team_members_8_team_member_bio','Debbie joined Raw Energy in July 2022. Her accounts experience covers practise, small businesses and large international companies both in the UK and abroad. \r\nSince going self employed in 2006 Debbie has managed a client base of 5 different firms. Debbie has really enjoyed developing her knowledge of the sustainable projects Raw Energy work on and looks forward to the exciting future ahead. \r\n'),(2730,257,'_team_members_8_team_member_bio','field_646be7781481c'),(2731,257,'team_members_9_team_member_photo','221'),(2732,257,'_team_members_9_team_member_photo','field_646be75714819'),(2733,257,'team_members_9_team_member_name','Tim Collett'),(2734,257,'_team_members_9_team_member_name','field_646be7621481a'),(2735,257,'team_members_9_team_member_title','Administrator '),(2736,257,'_team_members_9_team_member_title','field_646be76c1481b'),(2737,257,'team_members_9_team_member_bio','Tim joined Raw Energy earlier this year after working for several years in hospitality management. Having made the decision to undergo a switch in career path has entered the renewable energy sector to forge a career in administration. \r\nIn his previous career Tim accrued a wealth of organisational and communication skills that are put to good use in his role here at Raw Energy. Tim oversees the administration needs of the business and directly assists the other members of the team with their daily operations. \r\n'),(2738,257,'_team_members_9_team_member_bio','field_646be7781481c'),(2739,257,'team_members_10_team_member_photo','242'),(2740,257,'_team_members_10_team_member_photo','field_646be75714819'),(2741,257,'team_members_10_team_member_name','Daisy Lucker'),(2742,257,'_team_members_10_team_member_name','field_646be7621481a'),(2743,257,'team_members_10_team_member_title','Social Media & Marketing '),(2744,257,'_team_members_10_team_member_title','field_646be76c1481b'),(2745,257,'team_members_10_team_member_bio','Daisy joined Raw Energy as a freelance consultant in March 2023. With a history working at Bulb Energy and for the Department of Business, Energy and Industrial Strategy Daisy oozes a passion for sustainability with a key interest in solar panels and wind energy. \r\nHer passion for sustainability is evident from her most recent expedition – rowing 3,000 miles across the Atlantic as an all female team of 4. Daisy\'s team ‘Full Throttle’ took on an additional 688 mile cycle to the start line in La Gomera, ahead of rowing across the Atlantic attempting to be the most carbon conscious campaign to date.\r\n'),(2746,257,'_team_members_10_team_member_bio','field_646be7781481c'),(2747,257,'team_members_11_team_member_photo','218'),(2748,257,'_team_members_11_team_member_photo','field_646be75714819'),(2749,257,'team_members_11_team_member_name','Harry Sismanidis '),(2750,257,'_team_members_11_team_member_name','field_646be7621481a'),(2751,257,'team_members_11_team_member_title','Asset Manager '),(2752,257,'_team_members_11_team_member_title','field_646be76c1481b'),(2753,257,'team_members_11_team_member_bio','Having worked as an Asset Manager for the past 10 years, Harry joined RAW Energy earlier this year. “I’m excited to work for Raw Energy, where I can transfer my Commercial and Project Management skillset through to the Renewable Energy sector.\r\n Harry is always keen to offer new ideas and solutions to optimise performance and increase the lifespan of any Assets we manage, currently working on our Anaerobic Digestion projects. You can email him here if you have any specific questions. \r\n'),(2754,257,'_team_members_11_team_member_bio','field_646be7781481c'),(2755,258,'hero_title','Our Team'),(2756,258,'_hero_title','field_646be59d7838d'),(2757,258,'hero_copy','We are a team of <strong>enthusiastic, likeminded, and efficient people</strong>, here to work with those who share our values.'),(2758,258,'_hero_copy','field_646be5a37838e'),(2759,258,'team_members_0_team_member_photo','223'),(2760,258,'_team_members_0_team_member_photo','field_646be75714819'),(2761,258,'team_members_0_team_member_name','Stuart Homewood'),(2762,258,'_team_members_0_team_member_name','field_646be7621481a'),(2763,258,'team_members_0_team_member_title','CEO'),(2764,258,'_team_members_0_team_member_title','field_646be76c1481b'),(2765,258,'team_members_0_team_member_bio','Following graduation from the Royal Agricultural College in Cirencester, Stuart joined Low Carbon in 2010.\r\n\r\nDuring the four and a half years that followed, he developed 185MW (900 acres) of solar PV, comprising of over 20 schemes from Cornwall to Lincolnshire, including the UK’s first three 5MW solar farms.\r\n\r\nStuart joined Raw Energy in 2015.\r\n\r\nSince then, Stuart has worked across all forms of renewable technology and has been through many project finance and re-financing rounds. He spends his time advising and working on various M&A transactions, successfully representing developers and asset owners with buyers from the UK and overseas. \r\n\r\nIn 2018 Stuart co-founded Raw Infrastructure (trading as Raw Charging) with Will Watts and following significant growth, sold the company to Gulf UK in 2021. In the same year Stuart closed the financing on Raw Energy’s own biomethane plant with the Parisian fund Swen Capital and built it with HoSt Bioenergy Systems. \r\n\r\nAlongside his work at Raw Energy, Stuart is also CEO of the property company Albion Quarters. '),(2766,258,'_team_members_0_team_member_bio','field_646be7781481c'),(2767,258,'team_members','12'),(2768,258,'_team_members','field_646be74314818'),(2769,258,'join_our_team_title','Are you interested in joining our team?'),(2770,258,'_join_our_team_title','field_646be79e1481e'),(2771,258,'join_our_team_vacancies','Although we don\'t have any vacancies right now, we would love to hear from you. Please drop us an email with your CV'),(2772,258,'_join_our_team_vacancies','field_646be7b01481f'),(2773,258,'join_our_team_perks_0_single_perk','Want to make a difference in our evolving world?'),(2774,258,'_join_our_team_perks_0_single_perk','field_646be7d514821'),(2775,258,'join_our_team_perks_1_single_perk','Want to tackle climate change?'),(2776,258,'_join_our_team_perks_1_single_perk','field_646be7d514821'),(2777,258,'join_our_team_perks_2_single_perk','Want to work for a green energy company?'),(2778,258,'_join_our_team_perks_2_single_perk','field_646be7d514821'),(2779,258,'join_our_team_perks_3_single_perk','Have an interest in any of our services from anaerobic digestion to wind energy?'),(2780,258,'_join_our_team_perks_3_single_perk','field_646be7d514821'),(2781,258,'join_our_team_perks','4'),(2782,258,'_join_our_team_perks','field_646be7c514820'),(2783,258,'team_members_1_team_member_photo','219'),(2784,258,'_team_members_1_team_member_photo','field_646be75714819'),(2785,258,'team_members_1_team_member_name','Harriet Burrell-Knipe'),(2786,258,'_team_members_1_team_member_name','field_646be7621481a'),(2787,258,'team_members_1_team_member_title',' Project Delivery'),(2788,258,'_team_members_1_team_member_title','field_646be76c1481b'),(2789,258,'team_members_1_team_member_bio','Harriet joined Raw Autumn 2015 as Head of Project Delivery following 3 years with Inazin where she met Stuart.\r\n\r\nWhilst at Inazin she had a dual role of Project Coordinator and Grid Manager involved with the development of 173MW. \r\n\r\nHarriet project coordinates large-scale solar projects through development and due diligence, ensuring clean & organised paper projects. As Grid Manager she successfully builds relationships with Network Operators in both gas and electricity and has submitted 1000s of grid applications.'),(2790,258,'_team_members_1_team_member_bio','field_646be7781481c'),(2791,258,'team_members_2_team_member_photo','224'),(2792,258,'_team_members_2_team_member_photo','field_646be75714819'),(2793,258,'team_members_2_team_member_name','William Watts'),(2794,258,'_team_members_2_team_member_name','field_646be7621481a'),(2795,258,'team_members_2_team_member_title',''),(2796,258,'_team_members_2_team_member_title','field_646be76c1481b'),(2797,258,'team_members_2_team_member_bio','Founding member of Rabobank’s Renewables Finance Department, where he was Global Head of Solar investment. William was responsible for Rabo’s involvement in more than €1 Bio worth of Solar installations. He also managed transactions in Wind, Biofuels and Biomass.\r\n\r\nWilliam founded the Low Carbon Group, one of the largest developers of UK Solar installations and now successful fund manager, where he met Stuart.\r\n\r\nWilliam founded Raw in 2012 with the intention of making a diverse business group that addresses the pressing resource and sustainability problems of the 21st century in an ethical manner.'),(2798,258,'_team_members_2_team_member_bio','field_646be7781481c'),(2799,258,'team_members_3_team_member_photo','216'),(2800,258,'_team_members_3_team_member_photo','field_646be75714819'),(2801,258,'team_members_3_team_member_name','Robert Lamble'),(2802,258,'_team_members_3_team_member_name','field_646be7621481a'),(2803,258,'team_members_3_team_member_title','Consultant'),(2804,258,'_team_members_3_team_member_title','field_646be76c1481b'),(2805,258,'team_members_3_team_member_bio','Robert joined Raw Energy back in spring of 2022 after studying land management at the Royal Agricultural University. It was during his degree that he developed a key interest in renewable energy. Robert is one of the consultants here at Raw with a particular focus on Solar PV installation and portfolio management across both residential and commercial property. \r\n\r\n'),(2806,258,'_team_members_3_team_member_bio','field_646be7781481c'),(2807,258,'team_members_4_team_member_photo','242'),(2808,258,'_team_members_4_team_member_photo','field_646be75714819'),(2809,258,'team_members_4_team_member_name','Sika'),(2810,258,'_team_members_4_team_member_name','field_646be7621481a'),(2811,258,'team_members_4_team_member_title','Office dog '),(2812,258,'_team_members_4_team_member_title','field_646be76c1481b'),(2813,258,'team_members_4_team_member_bio','The final member of the team is Sika, our very own office dog. Bedlington whippets are capable of up to thirty-five miles per hour, but you will rarely encounter him hitting these heady speeds in the office. He is chiefly responsible for taking lengthy naps and whilst he may not be the most productive member of the team, he certainly succeeds in keeping up morale with aplomb!\r\n'),(2814,258,'_team_members_4_team_member_bio','field_646be7781481c'),(2815,258,'team_members_5_team_member_photo','222'),(2816,258,'_team_members_5_team_member_photo','field_646be75714819'),(2817,258,'team_members_5_team_member_name','Zac Barrett'),(2818,258,'_team_members_5_team_member_name','field_646be7621481a'),(2819,258,'team_members_5_team_member_title','Solar Sales '),(2820,258,'_team_members_5_team_member_title','field_646be76c1481b'),(2821,258,'team_members_5_team_member_bio','Zac Joined Raw Energy in December 2022 to head up Residential and commercial solar. Coming from Wessex Internet (a rural broadband provider) Zac managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build.\r\n\r\nZac is very involved in solar sales and is excited to help build the ever-expanding team. \r\n\r\nIn his spare time is often found on a riverbank or wondering the British countryside with his mad spaniels. \r\n'),(2822,258,'_team_members_5_team_member_bio','field_646be7781481c'),(2823,258,'team_members_6_team_member_photo','217'),(2824,258,'_team_members_6_team_member_photo','field_646be75714819'),(2825,258,'team_members_6_team_member_name','Felix Ma'),(2826,258,'_team_members_6_team_member_name','field_646be7621481a'),(2827,258,'team_members_6_team_member_title','Renewable Energy Asset Manager'),(2828,258,'_team_members_6_team_member_title','field_646be76c1481b'),(2829,258,'team_members_6_team_member_bio','Felix joined Raw Energy back in the Winter of 2022 after working as an engineer for the industrial cooling sector. \r\n\r\nHe has a keen interest within the renewable energy sector since his childhood and has develop his technical skills through a degree in renewable energy engineering.\r\n\r\nFelix is working as a renewable energy asset manager, building and implementing the financial model for Raw Energy’s own bioenergy plant. \r\n'),(2830,258,'_team_members_6_team_member_bio','field_646be7781481c'),(2831,258,'team_members_7_team_member_photo','242'),(2832,258,'_team_members_7_team_member_photo','field_646be75714819'),(2833,258,'team_members_7_team_member_name','Dave Vincent'),(2834,258,'_team_members_7_team_member_name','field_646be7621481a'),(2835,258,'team_members_7_team_member_title','Delivery Manager '),(2836,258,'_team_members_7_team_member_title','field_646be76c1481b'),(2837,258,'team_members_7_team_member_bio','Zac has recently Joined Raw (Winter 2022) to head up Residential and commercial solar for Raw. Coming from Wessex Internet (a rural broadband provider) he managed the direct sales team along with special projects which involved sales, Land access negotiation, planning all the way through to the network build. Zac has been very involved in sales and is excited to be joining the growing team at Raw in the renewable energy industry.'),(2838,258,'_team_members_7_team_member_bio','field_646be7781481c'),(2839,258,'team_members_8_team_member_photo','242'),(2840,258,'_team_members_8_team_member_photo','field_646be75714819'),(2841,258,'team_members_8_team_member_name','Debbie Hipkin'),(2842,258,'_team_members_8_team_member_name','field_646be7621481a'),(2843,258,'team_members_8_team_member_title','Finance '),(2844,258,'_team_members_8_team_member_title','field_646be76c1481b'),(2845,258,'team_members_8_team_member_bio','Debbie joined Raw Energy in July 2022. Her accounts experience covers practise, small businesses and large international companies both in the UK and abroad. \r\nSince going self employed in 2006 Debbie has managed a client base of 5 different firms. Debbie has really enjoyed developing her knowledge of the sustainable projects Raw Energy work on and looks forward to the exciting future ahead. \r\n'),(2846,258,'_team_members_8_team_member_bio','field_646be7781481c'),(2847,258,'team_members_9_team_member_photo','221'),(2848,258,'_team_members_9_team_member_photo','field_646be75714819'),(2849,258,'team_members_9_team_member_name','Tim Collett'),(2850,258,'_team_members_9_team_member_name','field_646be7621481a'),(2851,258,'team_members_9_team_member_title','Administrator '),(2852,258,'_team_members_9_team_member_title','field_646be76c1481b'),(2853,258,'team_members_9_team_member_bio','Tim joined Raw Energy earlier this year after working for several years in hospitality management. Having made the decision to undergo a switch in career path has entered the renewable energy sector to forge a career in administration. \r\nIn his previous career Tim accrued a wealth of organisational and communication skills that are put to good use in his role here at Raw Energy. Tim oversees the administration needs of the business and directly assists the other members of the team with their daily operations. \r\n'),(2854,258,'_team_members_9_team_member_bio','field_646be7781481c'),(2855,258,'team_members_10_team_member_photo','242'),(2856,258,'_team_members_10_team_member_photo','field_646be75714819'),(2857,258,'team_members_10_team_member_name','Daisy Lucker'),(2858,258,'_team_members_10_team_member_name','field_646be7621481a'),(2859,258,'team_members_10_team_member_title','Social Media & Marketing '),(2860,258,'_team_members_10_team_member_title','field_646be76c1481b'),(2861,258,'team_members_10_team_member_bio','Daisy joined Raw Energy as a freelance consultant in March 2023. With a history working at Bulb Energy and for the Department of Business, Energy and Industrial Strategy Daisy oozes a passion for sustainability with a key interest in solar panels and wind energy. \r\nHer passion for sustainability is evident from her most recent expedition – rowing 3,000 miles across the Atlantic as an all female team of 4. Daisy\'s team ‘Full Throttle’ took on an additional 688 mile cycle to the start line in La Gomera, ahead of rowing across the Atlantic attempting to be the most carbon conscious campaign to date.\r\n'),(2862,258,'_team_members_10_team_member_bio','field_646be7781481c'),(2863,258,'team_members_11_team_member_photo','218'),(2864,258,'_team_members_11_team_member_photo','field_646be75714819'),(2865,258,'team_members_11_team_member_name','Harry Sismanidis '),(2866,258,'_team_members_11_team_member_name','field_646be7621481a'),(2867,258,'team_members_11_team_member_title','Asset Manager '),(2868,258,'_team_members_11_team_member_title','field_646be76c1481b'),(2869,258,'team_members_11_team_member_bio','Having worked as an Asset Manager for the past 10 years, Harry joined RAW Energy earlier this year. “I’m excited to work for Raw Energy, where I can transfer my Commercial and Project Management skillset through to the Renewable Energy sector.\r\n Harry is always keen to offer new ideas and solutions to optimise performance and increase the lifespan of any Assets we manage, currently working on our Anaerobic Digestion projects. You can email him here if you have any specific questions. \r\n'),(2870,258,'_team_members_11_team_member_bio','field_646be7781481c'),(2871,259,'hero_background','230'),(2872,259,'_hero_background','field_646bbb6ea0465'),(2873,259,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(2874,259,'_intro_title','field_646bbb89a0467'),(2875,259,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UK\'s demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(2876,259,'_intro_copy','field_646bbb91a0468'),(2877,259,'sectors_title','Raw Energy work at three scales of renewable generation:'),(2878,259,'_sectors_title','field_646bbba4a046a'),(2879,259,'sectors_0_sector_image','226'),(2880,259,'_sectors_0_sector_image','field_646bbbbba046c'),(2881,259,'sectors_0_sector_title','Kilowatts'),(2882,259,'_sectors_0_sector_title','field_646bbbd2a046d'),(2883,259,'sectors_0_sector_subtitle','(Domestic)'),(2884,259,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(2885,259,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(2886,259,'_sectors_0_sector_copy','field_646bbbe7a046f'),(2887,259,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(2888,259,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(2889,259,'sectors_0_sectors_list_1_list_item','Insulation'),(2890,259,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(2891,259,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(2892,259,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(2893,259,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(2894,259,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(2895,259,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(2896,259,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(2897,259,'sectors_0_sectors_list','5'),(2898,259,'_sectors_0_sectors_list','field_646bbbf5a0470'),(2899,259,'sectors','3'),(2900,259,'_sectors','field_646bbbb1a046b'),(2901,259,'blocks','3'),(2902,259,'_blocks','field_646bbc11a0472'),(2903,259,'outro_title','Since 2012 Raw has developed, consulted for and facilitated over £100million of investment into renewable energy projects and portfolios.'),(2904,259,'_outro_title','field_646bbc4da0477'),(2905,259,'sectors_1_sector_image','227'),(2906,259,'_sectors_1_sector_image','field_646bbbbba046c'),(2907,259,'sectors_1_sector_title','Hundreds of Kilowatts'),(2908,259,'_sectors_1_sector_title','field_646bbbd2a046d'),(2909,259,'sectors_1_sector_subtitle','(Commercial)'),(2910,259,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(2911,259,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(2912,259,'_sectors_1_sector_copy','field_646bbbe7a046f'),(2913,259,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(2914,259,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(2915,259,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(2916,259,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(2917,259,'sectors_1_sectors_list_2_list_item','ESG'),(2918,259,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(2919,259,'sectors_1_sectors_list_3_list_item','Offsetting '),(2920,259,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(2921,259,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(2922,259,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(2923,259,'sectors_1_sectors_list_5_list_item','Conservation'),(2924,259,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(2925,259,'sectors_1_sectors_list','6'),(2926,259,'_sectors_1_sectors_list','field_646bbbf5a0470'),(2927,259,'sectors_2_sector_image','228'),(2928,259,'_sectors_2_sector_image','field_646bbbbba046c'),(2929,259,'sectors_2_sector_title','Megawatt Scale'),(2930,259,'_sectors_2_sector_title','field_646bbbd2a046d'),(2931,259,'sectors_2_sector_subtitle','(Utility)'),(2932,259,'_sectors_2_sector_subtitle','field_646bbbd9a046e'),(2933,259,'sectors_2_sector_copy','Raw Energy develop their own projects at MW scale and leverage their significant experience to consult for others on theirs.'),(2934,259,'_sectors_2_sector_copy','field_646bbbe7a046f'),(2935,259,'sectors_2_sectors_list_0_list_item','Solar'),(2936,259,'_sectors_2_sectors_list_0_list_item','field_646bbbffa0471'),(2937,259,'sectors_2_sectors_list_1_list_item','Wind'),(2938,259,'_sectors_2_sectors_list_1_list_item','field_646bbbffa0471'),(2939,259,'sectors_2_sectors_list_2_list_item','Hydro'),(2940,259,'_sectors_2_sectors_list_2_list_item','field_646bbbffa0471'),(2941,259,'sectors_2_sectors_list_3_list_item','Battery'),(2942,259,'_sectors_2_sectors_list_3_list_item','field_646bbbffa0471'),(2943,259,'sectors_2_sectors_list','4'),(2944,259,'_sectors_2_sectors_list','field_646bbbf5a0470'),(2945,259,'blocks_0_block_title','History'),(2946,259,'_blocks_0_block_title','field_646bbc1da0473'),(2947,259,'blocks_0_block_copy','Raw Energy has been growing since 2012 and has a dedicated team with close and permanently contracted relationships with excellent providers of legal and technical services.'),(2948,259,'_blocks_0_block_copy','field_646bbc23a0474'),(2949,259,'blocks_0_block_image','114'),(2950,259,'_blocks_0_block_image','field_646bbc30a0475'),(2951,259,'blocks_1_block_title','Purpose'),(2952,259,'_blocks_1_block_title','field_646bbc1da0473'),(2953,259,'blocks_1_block_copy','Raw Energy was founded to bridge the gap between renewable energy projects and investors. Due to previous experience of both developing and financing these projects Raw Energy has a rare ability to see both sides of a transaction as well as the experience to understand its full transactional requirements.'),(2954,259,'_blocks_1_block_copy','field_646bbc23a0474'),(2955,259,'blocks_1_block_image','223'),(2956,259,'_blocks_1_block_image','field_646bbc30a0475'),(2957,259,'blocks_2_block_title','Capability'),(2958,259,'_blocks_2_block_title','field_646bbc1da0473'),(2959,259,'blocks_2_block_copy','A strong network of institutional investors allows Raw Energy to match projects with suitable investors and then provide the transactional skills to close the investment adding value on both sides.\r\n\r\nThe company still strives to develop their own projects in sectors where long-term opportunities have been identified.'),(2960,259,'_blocks_2_block_copy','field_646bbc23a0474'),(2961,259,'blocks_2_block_image','118'),(2962,259,'_blocks_2_block_image','field_646bbc30a0475'),(2963,261,'_wp_attached_file','2023/07/Commerical-solar-for-home-page-banner.png'),(2964,261,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:49:\"2023/07/Commerical-solar-for-home-page-banner.png\";s:8:\"filesize\";i:2209032;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Commerical-solar-for-home-page-banner-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68120;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Commerical-solar-for-home-page-banner-1024x427.png\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:675245;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Commerical-solar-for-home-page-banner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41839;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Commerical-solar-for-home-page-banner-768x320.png\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:394803;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Commerical-solar-for-home-page-banner-1536x640.png\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1372038;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2965,6,'hero_carousel_2_slide_background_type','image'),(2966,6,'_hero_carousel_2_slide_background_type','field_646b85a69b754'),(2967,6,'hero_carousel_2_slide_image','261'),(2968,6,'_hero_carousel_2_slide_image','field_646b85c69b755'),(2969,6,'hero_carousel_2_slide_title','Commercial Solar & Storage'),(2970,6,'_hero_carousel_2_slide_title','field_646b85ed9b757'),(2971,6,'hero_carousel_2_slide_subtitle','We can help you maximise energy savings and allow load shifting with our cutting-edge commercial solar and battery solutions.'),(2972,6,'_hero_carousel_2_slide_subtitle','field_646b85f99b758'),(2973,262,'hero_carousel_0_slide_background_type','image'),(2974,262,'_hero_carousel_0_slide_background_type','field_646b85a69b754'),(2975,262,'hero_carousel_0_slide_image','15'),(2976,262,'_hero_carousel_0_slide_image','field_646b85c69b755'),(2977,262,'hero_carousel_0_slide_title','Power your home with a 4kw fully installed system from £7,250'),(2978,262,'_hero_carousel_0_slide_title','field_646b85ed9b757'),(2979,262,'hero_carousel_0_slide_subtitle','Include battery storage for a further £2,740 to maximise the benefits of home solar'),(2980,262,'_hero_carousel_0_slide_subtitle','field_646b85f99b758'),(2981,262,'hero_carousel','3'),(2982,262,'_hero_carousel','field_646b85999b753'),(2983,262,'featured_services_title','Domestic & Commercial Savings'),(2984,262,'_featured_services_title','field_646b9635ea0a4'),(2985,262,'services_title','Raw Energy\'s other services'),(2986,262,'_services_title','field_646b964aea0a5'),(2987,262,'ratings_title','Don’t just take our word for it'),(2988,262,'_ratings_title','field_646b86339b75a'),(2989,262,'hero_carousel_0_slide_video','https://vimeo.com/745798278'),(2990,262,'_hero_carousel_0_slide_video','field_646b85db9b756'),(2991,262,'hero_carousel_1_slide_background_type','video'),(2992,262,'_hero_carousel_1_slide_background_type','field_646b85a69b754'),(2993,262,'hero_carousel_1_slide_video','https://vimeo.com/745798278'),(2994,262,'_hero_carousel_1_slide_video','field_646b85db9b756'),(2995,262,'hero_carousel_1_slide_title',''),(2996,262,'_hero_carousel_1_slide_title','field_646b85ed9b757'),(2997,262,'hero_carousel_1_slide_subtitle',''),(2998,262,'_hero_carousel_1_slide_subtitle','field_646b85f99b758'),(2999,262,'hero_carousel_1_slide_image','15'),(3000,262,'_hero_carousel_1_slide_image','field_646b85c69b755'),(3001,262,'hero_carousel_2_slide_background_type','image'),(3002,262,'_hero_carousel_2_slide_background_type','field_646b85a69b754'),(3003,262,'hero_carousel_2_slide_image','261'),(3004,262,'_hero_carousel_2_slide_image','field_646b85c69b755'),(3005,262,'hero_carousel_2_slide_title','Commercial Solar & Storage'),(3006,262,'_hero_carousel_2_slide_title','field_646b85ed9b757'),(3007,262,'hero_carousel_2_slide_subtitle','We can help you maximise energy savings and allow load shifting with our cutting-edge commercial solar and battery solutions.'),(3008,262,'_hero_carousel_2_slide_subtitle','field_646b85f99b758'),(3009,29,'faqs_0_faq_title','What is solar energy'),(3010,29,'_faqs_0_faq_title','field_6477582205ac8'),(3011,29,'faqs_0_faq_copy','Solar energy is electricity generated through the use of solar photovoltaic (PV) technology. These solar panels are used to capture the sun’s abundant and clean renewable energy, turning it into electricity. \r\nThe cells within the PV modules convert irradiation into Direct Current (DC) power. The inverters convert the DC power to Alternating Current (AC) power. The meter then measures the amount of solar energy produced then the electrical energy is then either - used directly on site, used to charge an on-site battery or distributed directly to the utility grid. '),(3012,29,'_faqs_0_faq_copy','field_6477582905ac9'),(3013,29,'faqs_1_faq_title','Are solar panels cost effective in the UK'),(3014,29,'_faqs_1_faq_title','field_6477582205ac8'),(3015,29,'faqs_1_faq_copy','Yes. Whilst there are no longer any tariffs available for domestic or commercial solar installations, the Government are now relying on the economics to encourage solar installation. Taking into account current power pricing, for most domestic users the payback period for solar is very compelling.'),(3016,29,'_faqs_1_faq_copy','field_6477582905ac9'),(3017,29,'faqs_2_faq_title','How much do solar panels cost'),(3018,29,'_faqs_2_faq_title','field_6477582205ac8'),(3019,29,'faqs_2_faq_copy','This will vary for each application based on roof size, orientation and the consumption at the property. Typically, the cost of a solar system will range from around £6,000 for smaller homes up to £12,000 for larger homes.'),(3020,29,'_faqs_2_faq_copy','field_6477582905ac9'),(3021,29,'faqs_3_faq_title','How does solar benefit the environment '),(3022,29,'_faqs_3_faq_title','field_6477582205ac8'),(3023,29,'faqs_3_faq_copy','Without the sun our planet would be very different. It powers almost all activities on earth either directly or otherwise. Solar energy is environmentally friendly because it doesn’t generate green house gasses. Renewable technologies help to reduce our carbon footprint. It is only natural that we utilise the sun for our energy needs.'),(3024,29,'_faqs_3_faq_copy','field_6477582905ac9'),(3025,263,'_wp_attached_file','2023/05/IMG_1992-scaled.jpg'),(3026,263,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1912;s:4:\"file\";s:27:\"2023/05/IMG_1992-scaled.jpg\";s:8:\"filesize\";i:531960;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1992-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12205;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1992-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65853;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1992-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8853;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1992-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38713;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_1992-1536x1147.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1147;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160411;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_1992-2048x1530.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:316674;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1303229126\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.85\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:19:\"0.00019892580067635\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1992.jpg\";}'),(3027,264,'_wp_attached_file','2023/05/image-scaled.jpeg'),(3028,264,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:25:\"2023/05/image-scaled.jpeg\";s:8:\"filesize\";i:567061;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"image-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23738;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"image-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114267;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"image-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16823;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"image-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72467;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"image-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228984;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:20:\"image-2048x1536.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:380940;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone SE\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1499872762\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00071479628305933\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"image.jpeg\";}'),(3029,265,'hero_background','230'),(3030,265,'_hero_background','field_646bbb6ea0465'),(3031,265,'intro_title','Raw Energy. Renewable energy with integrity since 2012.'),(3032,265,'_intro_title','field_646bbb89a0467'),(3033,265,'intro_copy','Our story: Raw Energy was founded to help facilitate the growth in power generated from renewable sources and to ensure that energy generated is used as efficiently as possible. When Raw Energy was founded, renewable generation accounted for just 15% of the UK\'s demand. At time of writing in 2023, National Grid have confirmed that 43% of the UK’s power is now from renewable sources.\r\n\r\n<a href=\"http://localhost:8888/raw-energy/team/\">The team at Raw Energy</a> is made up of experienced professionals with strong backgrounds in consultancy, development, asset management, investment, construction, installation and agri-tech. Our broad skillset, enthusiasm and depth of knowledge have led to an impressive track record in the sector. The team are knowledgeable, friendly, diligent and hard-working.'),(3034,265,'_intro_copy','field_646bbb91a0468'),(3035,265,'sectors_title','Raw Energy work at three scales of renewable generation:'),(3036,265,'_sectors_title','field_646bbba4a046a'),(3037,265,'sectors_0_sector_image','226'),(3038,265,'_sectors_0_sector_image','field_646bbbbba046c'),(3039,265,'sectors_0_sector_title','Kilowatts'),(3040,265,'_sectors_0_sector_title','field_646bbbd2a046d'),(3041,265,'sectors_0_sector_subtitle','(Domestic)'),(3042,265,'_sectors_0_sector_subtitle','field_646bbbd9a046e'),(3043,265,'sectors_0_sector_copy','Raw Energy helps homeowners generate the power they need, conserve it and utilise it efficiently.'),(3044,265,'_sectors_0_sector_copy','field_646bbbe7a046f'),(3045,265,'sectors_0_sectors_list_0_list_item','Rooftop solar'),(3046,265,'_sectors_0_sectors_list_0_list_item','field_646bbbffa0471'),(3047,265,'sectors_0_sectors_list_1_list_item','Insulation'),(3048,265,'_sectors_0_sectors_list_1_list_item','field_646bbbffa0471'),(3049,265,'sectors_0_sectors_list_2_list_item','Air Source Heat Pumps'),(3050,265,'_sectors_0_sectors_list_2_list_item','field_646bbbffa0471'),(3051,265,'sectors_0_sectors_list_3_list_item','Solar Thermal'),(3052,265,'_sectors_0_sectors_list_3_list_item','field_646bbbffa0471'),(3053,265,'sectors_0_sectors_list_4_list_item','Energy Performance Certificates'),(3054,265,'_sectors_0_sectors_list_4_list_item','field_646bbbffa0471'),(3055,265,'sectors_0_sectors_list','5'),(3056,265,'_sectors_0_sectors_list','field_646bbbf5a0470'),(3057,265,'sectors','3'),(3058,265,'_sectors','field_646bbbb1a046b'),(3059,265,'blocks','3'),(3060,265,'_blocks','field_646bbc11a0472'),(3061,265,'outro_title','Since 2012 Raw has developed, consulted for and facilitated over £100million of investment into renewable energy projects and portfolios.'),(3062,265,'_outro_title','field_646bbc4da0477'),(3063,265,'sectors_1_sector_image','227'),(3064,265,'_sectors_1_sector_image','field_646bbbbba046c'),(3065,265,'sectors_1_sector_title','Hundreds of Kilowatts'),(3066,265,'_sectors_1_sector_title','field_646bbbd2a046d'),(3067,265,'sectors_1_sector_subtitle','(Commercial)'),(3068,265,'_sectors_1_sector_subtitle','field_646bbbd9a046e'),(3069,265,'sectors_1_sector_copy','Raw Energy help business owners to generate their own energy and use it efficiently:'),(3070,265,'_sectors_1_sector_copy','field_646bbbe7a046f'),(3071,265,'sectors_1_sectors_list_0_list_item','Rooftop solar'),(3072,265,'_sectors_1_sectors_list_0_list_item','field_646bbbffa0471'),(3073,265,'sectors_1_sectors_list_1_list_item','Biomass boilers'),(3074,265,'_sectors_1_sectors_list_1_list_item','field_646bbbffa0471'),(3075,265,'sectors_1_sectors_list_2_list_item','ESG'),(3076,265,'_sectors_1_sectors_list_2_list_item','field_646bbbffa0471'),(3077,265,'sectors_1_sectors_list_3_list_item','Offsetting '),(3078,265,'_sectors_1_sectors_list_3_list_item','field_646bbbffa0471'),(3079,265,'sectors_1_sectors_list_4_list_item','Energy and Heat'),(3080,265,'_sectors_1_sectors_list_4_list_item','field_646bbbffa0471'),(3081,265,'sectors_1_sectors_list_5_list_item','Conservation'),(3082,265,'_sectors_1_sectors_list_5_list_item','field_646bbbffa0471'),(3083,265,'sectors_1_sectors_list','6'),(3084,265,'_sectors_1_sectors_list','field_646bbbf5a0470'),(3085,265,'sectors_2_sector_image','228'),(3086,265,'_sectors_2_sector_image','field_646bbbbba046c'),(3087,265,'sectors_2_sector_title','Megawatt Scale'),(3088,265,'_sectors_2_sector_title','field_646bbbd2a046d'),(3089,265,'sectors_2_sector_subtitle','(Utility)'),(3090,265,'_sectors_2_sector_subtitle','field_646bbbd9a046e'),(3091,265,'sectors_2_sector_copy','Raw Energy develop their own projects at MW scale and leverage their significant experience to consult for others on theirs.'),(3092,265,'_sectors_2_sector_copy','field_646bbbe7a046f'),(3093,265,'sectors_2_sectors_list_0_list_item','Solar'),(3094,265,'_sectors_2_sectors_list_0_list_item','field_646bbbffa0471'),(3095,265,'sectors_2_sectors_list_1_list_item','Wind'),(3096,265,'_sectors_2_sectors_list_1_list_item','field_646bbbffa0471'),(3097,265,'sectors_2_sectors_list_2_list_item','Hydro'),(3098,265,'_sectors_2_sectors_list_2_list_item','field_646bbbffa0471'),(3099,265,'sectors_2_sectors_list_3_list_item','Battery'),(3100,265,'_sectors_2_sectors_list_3_list_item','field_646bbbffa0471'),(3101,265,'sectors_2_sectors_list','4'),(3102,265,'_sectors_2_sectors_list','field_646bbbf5a0470'),(3103,265,'blocks_0_block_title','History'),(3104,265,'_blocks_0_block_title','field_646bbc1da0473'),(3105,265,'blocks_0_block_copy','Raw Energy has been growing since 2012 and has a dedicated team with close and permanently contracted relationships with excellent providers of legal and technical services.'),(3106,265,'_blocks_0_block_copy','field_646bbc23a0474'),(3107,265,'blocks_0_block_image','114'),(3108,265,'_blocks_0_block_image','field_646bbc30a0475'),(3109,265,'blocks_1_block_title','Purpose'),(3110,265,'_blocks_1_block_title','field_646bbc1da0473'),(3111,265,'blocks_1_block_copy','Raw Energy was founded to bridge the gap between renewable energy projects and investors. Due to previous experience of both developing and financing these projects Raw Energy has a rare ability to see both sides of a transaction as well as the experience to understand its full transactional requirements.'),(3112,265,'_blocks_1_block_copy','field_646bbc23a0474'),(3113,265,'blocks_1_block_image','264'),(3114,265,'_blocks_1_block_image','field_646bbc30a0475'),(3115,265,'blocks_2_block_title','Capability'),(3116,265,'_blocks_2_block_title','field_646bbc1da0473'),(3117,265,'blocks_2_block_copy','A strong network of institutional investors allows Raw Energy to match projects with suitable investors and then provide the transactional skills to close the investment adding value on both sides.\r\n\r\nThe company still strives to develop their own projects in sectors where long-term opportunities have been identified.'),(3118,265,'_blocks_2_block_copy','field_646bbc23a0474'),(3119,265,'blocks_2_block_image','118'),(3120,265,'_blocks_2_block_image','field_646bbc30a0475'),(3121,38,'_wp_old_slug','project-name'),(3122,39,'_wp_old_slug','test-project-name'),(3123,40,'_wp_old_slug','second-test-project'),(3124,271,'_wp_attached_file','2023/08/Bullet-point-icon.jpg'),(3125,271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:322;s:6:\"height\";i:348;s:4:\"file\";s:29:\"2023/08/Bullet-point-icon.jpg\";s:8:\"filesize\";i:11641;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Bullet-point-icon-278x300.jpg\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9071;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Bullet-point-icon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4348;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3126,272,'_wp_attached_file','2023/08/RAW-icon-PNG.png'),(3127,272,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:345;s:6:\"height\";i:341;s:4:\"file\";s:24:\"2023/08/RAW-icon-PNG.png\";s:8:\"filesize\";i:22680;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"RAW-icon-PNG-300x297.png\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21218;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"RAW-icon-PNG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9471;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3128,273,'_wp_attached_file','2023/08/cropped-RAW-icon-PNG.png'),(3129,273,'_wp_attachment_context','site-icon'),(3130,273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:32:\"2023/08/cropped-RAW-icon-PNG.png\";s:8:\"filesize\";i:45088;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"cropped-RAW-icon-PNG-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24557;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"cropped-RAW-icon-PNG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10074;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:32:\"cropped-RAW-icon-PNG-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21244;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:32:\"cropped-RAW-icon-PNG-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13742;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:32:\"cropped-RAW-icon-PNG-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12702;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:30:\"cropped-RAW-icon-PNG-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1561;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3131,274,'_wp_trash_meta_status','publish'),(3132,274,'_wp_trash_meta_time','1692283317');
/*!40000 ALTER TABLE `wpdh_postmeta` ENABLE KEYS */;
--
-- Table structure for table `wpdh_posts`
--
DROP TABLE IF EXISTS `wpdh_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(255) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=278 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_posts`
--
/*!40000 ALTER TABLE `wpdh_posts` DISABLE KEYS */;
INSERT INTO `wpdh_posts` VALUES (1,1,'2023-05-17 16:11:07','2023-05-17 15:11:07','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2023-05-17 16:11:07','2023-05-17 15:11:07','',0,'http://localhost:8888/raw-energy/?p=1',0,'post','',1),(3,1,'2023-05-17 16:11:07','2023-05-17 15:11:07','<p style=\"font-weight: 400;\">At RAW Energy Ltd we recognise that collecting and managing personal information brings with it certain responsibilities.</p>\r\n<p style=\"font-weight: 400;\">In line with changes to data protection legislation, to be introduced on 25<sup>th</sup> May 2018, our privacy policy is detailed below. This document outlines our commitment to managing data responsibly, together with what we can and cannot do with your information.</p>\r\n\r\n<h5 style=\"font-weight: 400;\"><strong>What information do we hold?</strong></h5>\r\n<p style=\"font-weight: 400;\">The information RAW Energy Ltd holds about you or your company varies, depending upon the nature and length of the working relationship we have with you. We will use the data we hold to:</p>\r\n\r\n<ul>\r\n <li>manage customer service</li>\r\n <li>inform you of projects we are involved in which might be of interest to you</li>\r\n <li>fulfil contractual obligations between you, us and designated third parties.</li>\r\n</ul>\r\n<h5 style=\"font-weight: 400;\"><strong>How long will we hold your information for?</strong></h5>\r\n<p style=\"font-weight: 400;\">We will ensure that your information is held for as long as it is required, and no longer. This will be reviewed annually, every May. Any information retained which is no longer relevant to our business function and relationship with you will be disposed of in a safe and secure manner.</p>\r\n\r\n<h5 style=\"font-weight: 400;\"><strong>Protecting your data</strong></h5>\r\n<p style=\"font-weight: 400;\">RAW Energy Ltd has stringent security measures in place to ensure information is not shared internally or externally with parties who do not require access to it. Our staff only have access to information relevant to their specific roles within the organisation.</p>\r\n\r\n<h5 style=\"font-weight: 400;\"><strong>Can I access the information held about me?</strong></h5>\r\n<p style=\"font-weight: 400;\">You have the right to request details of all the information we hold about you. Please write to or email us:</p>\r\n<p style=\"font-weight: 400;\">RAW Energy Ltd</p>\r\n<p style=\"font-weight: 400;\">Trent Lodge</p>\r\n<p style=\"font-weight: 400;\">Stroud Road</p>\r\n<p style=\"font-weight: 400;\">Cirencester</p>\r\n<p style=\"font-weight: 400;\">GL7 6JN</p>\r\n<p style=\"font-weight: 400;\">Email – <a href=\"mailto:info@rawergy.co.uk\">info@rawergy.co.uk</a></p>\r\n\r\n<h5 style=\"font-weight: 400;\"><strong>Disclosing your data</strong></h5>\r\n<span style=\"font-weight: 400;\">We will never share your information for marketing purposes. However, we may share your details with third parties relevant to particular projects that you, and we, are involved in. For example, local authorities, our legal representatives, other professional service providers. We will only provide these third parties with information they need to deliver the service we have engaged them in. We may also share your information if legally instructed to by courts, police of other law enforcement agencies. </span>\r\n\r\n<!-- /wp:paragraph -->','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2023-05-23 10:42:33','2023-05-23 09:42:33','',0,'http://localhost:8888/raw-energy/?page_id=3',0,'page','',0),(6,1,'2023-05-18 14:04:32','2023-05-18 13:04:32','','Home','','publish','closed','closed','','home','','','2023-07-14 08:22:12','2023-07-14 07:22:12','',0,'http://localhost:8888/raw-energy/?page_id=6',0,'page','',0),(7,1,'2023-05-18 14:04:32','2023-05-18 13:04:32','','Home','','inherit','closed','closed','','6-revision-v1','','','2023-05-18 14:04:32','2023-05-18 13:04:32','',6,'http://localhost:8888/raw-energy/?p=7',0,'revision','',0),(8,1,'2023-05-18 14:04:42','2023-05-18 13:04:42','','About','','publish','closed','closed','','about','','','2023-07-14 08:37:07','2023-07-14 07:37:07','',0,'http://localhost:8888/raw-energy/?page_id=8',0,'page','',0),(9,1,'2023-05-18 14:04:42','2023-05-18 13:04:42','','About','','inherit','closed','closed','','8-revision-v1','','','2023-05-18 14:04:42','2023-05-18 13:04:42','',8,'http://localhost:8888/raw-energy/?p=9',0,'revision','',0),(10,1,'2023-05-18 14:04:52','2023-05-18 13:04:52','','Team','','publish','closed','closed','','team','','','2023-07-10 14:12:24','2023-07-10 13:12:24','',0,'http://localhost:8888/raw-energy/?page_id=10',0,'page','',0),(11,1,'2023-05-18 14:04:52','2023-05-18 13:04:52','','Team','','inherit','closed','closed','','10-revision-v1','','','2023-05-18 14:04:52','2023-05-18 13:04:52','',10,'http://localhost:8888/raw-energy/?p=11',0,'revision','',0),(12,1,'2023-05-18 14:05:02','2023-05-18 13:05:02','','Contact','','publish','closed','closed','','contact','','','2023-05-22 23:45:11','2023-05-22 22:45:11','',0,'http://localhost:8888/raw-energy/?page_id=12',0,'page','',0),(13,1,'2023-05-18 14:05:02','2023-05-18 13:05:02','','Contact','','inherit','closed','closed','','12-revision-v1','','','2023-05-18 14:05:02','2023-05-18 13:05:02','',12,'http://localhost:8888/raw-energy/?p=13',0,'revision','',0),(14,1,'2023-05-18 15:20:14','2023-05-18 14:20:14','<!-- wp:paragraph -->\r\n<p>Overall, solar panels can provide a range of benefits for homeowners, including financial savings, environmental benefits, and greater energy independence. Raw Energy are here to find the best solution for your needs.</p>\r\n<!-- /wp:paragraph -->','Home Solar & Battery Storage','','publish','closed','closed','','home-solar-battery-storage','','','2023-05-31 14:44:24','2023-05-31 13:44:24','',0,'http://localhost:8888/raw-energy/?post_type=services&p=14',1,'services','',0),(15,1,'2023-05-18 14:22:57','2023-05-18 13:22:57','','solar-power-uses','','inherit','open','closed','','solar-power-uses','','','2023-05-18 14:22:57','2023-05-18 13:22:57','',14,'http://localhost:8888/raw-energy/wp-content/uploads/2023/05/solar-power-uses.png',0,'attachment','image/png',0),(21,1,'2023-05-23 00:03:10','2023-05-18 18:47:12',' ','','','publish','closed','closed','','21','','','2023-05-23 00:03:10','2023-05-22 23:03:10','',0,'http://localhost:8888/raw-energy/?p=21',2,'nav_menu_item','',0),(23,1,'2023-05-23 00:03:10','2023-05-18 18:47:12',' ','','','publish','closed','closed','','23','','','2023-05-23 00:03:10','2023-05-22 23:03:10','',0,'http://localhost:8888/raw-energy/?p=23',4,'nav_menu_item','',0),(24,1,'2023-05-23 00:03:10','2023-05-18 18:47:12',' ','','','publish','closed','closed','','24','','','2023-05-23 00:03:10','2023-05-22 23:03:10','',0,'http://localhost:8888/raw-energy/?p=24',5,'nav_menu_item','',0),(27,1,'2023-05-18 20:47:32','2023-05-18 19:47:32','','Energy Consultancy','','publish','closed','closed','','energy-consultancy','','','2023-07-10 09:16:02','2023-07-10 08:16:02','',0,'http://localhost:8888/raw-energy/?post_type=services&p=27',3,'services','',0),(28,1,'2023-05-18 20:48:04','2023-05-18 19:48:04','','Anaerobic Digestion','','publish','closed','closed','','anaerobic-digestion','','','2023-07-11 19:53:08','2023-07-11 18:53:08','',0,'http://localhost:8888/raw-energy/?post_type=services&p=28',5,'services','',0),(29,1,'2023-05-18 20:48:18','2023-05-18 19:48:18','','Commercial Solar & Storage','','publish','closed','closed','','commercial-solar-storage','','','2023-07-14 08:34:18','2023-07-14 07:34:18','',0,'http://localhost:8888/raw-energy/?post_type=services&p=29',2,'services','',0),(30,1,'2023-05-18 20:48:31','2023-05-18 19:48:31','','Asset Management','','publish','closed','closed','','asset-management','','','2023-07-10 09:17:58','2023-07-10 08:17:58','',0,'http://localhost:8888/raw-energy/?post_type=services&p=30',4,'services','',0),(31,1,'2023-05-18 20:48:54','2023-05-18 19:48:54','','Environmental & Social Governance','','publish','closed','closed','','environmental-social-governance','','','2023-05-31 15:17:10','2023-05-31 14:17:10','',0,'http://localhost:8888/raw-energy/?post_type=services&p=31',12,'services','',0),(32,1,'2023-05-18 20:49:06','2023-05-18 19:49:06','','Solar Maintenance','','publish','closed','closed','','solar-maintenance','','','2023-07-10 10:32:28','2023-07-10 09:32:28','',0,'http://localhost:8888/raw-energy/?post_type=services&p=32',8,'services','',0),(33,1,'2023-05-18 20:49:24','2023-05-18 19:49:24','','Electrical Vehicle Charging','','private','closed','closed','','electrical-vehicle-charging','','','2023-06-09 11:06:37','2023-06-09 10:06:37','',0,'http://localhost:8888/raw-energy/?post_type=services&p=33',9,'services','',0),(34,1,'2023-05-18 20:49:37','2023-05-18 19:49:37','','Wind Energy','','publish','closed','closed','','wind-energy','','','2023-07-14 08:35:50','2023-07-14 07:35:50','',0,'http://localhost:8888/raw-energy/?post_type=services&p=34',7,'services','',0),(35,1,'2023-05-18 20:49:48','2023-05-18 19:49:48','','Large Scale Solar','','publish','closed','closed','','large-scale-solar','','','2023-07-10 09:47:53','2023-07-10 08:47:53','',0,'http://localhost:8888/raw-energy/?post_type=services&p=35',6,'services','',0),(36,1,'2023-05-18 20:50:03','2023-05-18 19:50:03','','Surveys & EPCs','','publish','closed','closed','','surveys-epcs','','','2023-07-10 10:37:38','2023-07-10 09:37:38','',0,'http://localhost:8888/raw-energy/?post_type=services&p=36',10,'services','',0),(37,1,'2023-05-18 20:50:13','2023-05-18 19:50:13','','Domestic & Commercial Insulation','','publish','closed','closed','','insulation','','','2023-07-10 10:39:31','2023-07-10 09:39:31','',0,'http://localhost:8888/raw-energy/?post_type=services&p=37',11,'services','',0),(38,1,'2023-05-18 22:23:21','2023-05-18 21:23:21','<!-- wp:paragraph -->\r\n<p>We focus on offering our customers excellent value for money and proving tangible benefits</p>\r\n<!-- /wp:paragraph -->','Biomethane Injection','','publish','closed','closed','','biomethane-injection','','','2023-07-14 12:26:40','2023-07-14 11:26:40','',0,'http://localhost:8888/raw-energy/?post_type=projects&p=38',5,'projects','',0),(39,1,'2023-05-20 12:49:58','2023-05-20 11:49:58','','Commercial Rooftop Solar PV','','publish','closed','closed','','commercial-rooftop-solar-pv','','','2023-07-14 12:26:58','2023-07-14 11:26:58','',0,'http://localhost:8888/raw-energy/?post_type=projects&p=39',4,'projects','',0),(40,1,'2023-05-20 13:28:32','2023-05-20 12:28:32','','Commercial Biomass','','publish','closed','closed','','commercial-biomass','','','2023-07-14 12:27:07','2023-07-14 11:27:07','',0,'http://localhost:8888/raw-energy/?post_type=projects&p=40',6,'projects','',0),(41,1,'2023-05-22 13:44:06','2023-05-22 12:44:06','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:8:\"services\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:1:{i:0;s:11:\"the_content\";}s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Single Service','single-service','publish','closed','closed','','group_646b63719f80c','','','2023-05-31 15:23:24','2023-05-31 14:23:24','',0,'http://localhost:8888/raw-energy/?post_type=acf-field-group&p=41',0,'acf-field-group','',0),(42,1,'2023-05-22 13:44:06','2023-05-22 12:44:06','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Importance','importance','publish','closed','closed','','field_646b637126304','','','2023-05-31 14:25:26','2023-05-31 13:25:26','',41,'http://localhost:8888/raw-energy/?post_type=acf-field&p=42',2,'acf-field','',0),(43,1,'2023-05-22 13:52:16','2023-05-22 12:52:16','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Intro Title','importance_intro_title','publish','closed','closed','','field_646b639ddbbd1','','','2023-05-31 14:25:26','2023-05-31 13:25:26','',41,'http://localhost:8888/raw-energy/?post_type=acf-field&p=43',3,'acf-field','',0),(44,1,'2023-05-22 13:52:16','2023-05-22 12:52:16','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Intro Subtitle','importance_intro_subtitle','publish','closed','closed','','field_646b63abdbbd2','','','2023-05-31 14:28:27','2023-05-31 13:28:27','',41,'http://localhost:8888/raw-energy/?post_type=acf-field&p=44',4,'acf-field','',0),(45,1,'2023-05-22 13:52:16','2023-05-22 12:52:16','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Copy','importance_copy','publish','closed','closed','','field_646b63badbbd3','','','2023-05-31 14:57:56','2023-05-31 13:57:56','',41,'http://localhost:8888/raw-energy/?post_type=acf-field&p=45',6,'acf-field','',0),(46,1,'2023-05-22 13:52:16','2023-05-22 12:52:16','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Sidebar Title','sidebar_title','publish','closed','closed','','field_646b63cfdbbd4','','','2023-05-31 14:57:56','2023-05-31 13:57:56','',41,'http://localhost:8888/raw-energy/?post_type=acf-field&p=46',8,'acf-field','',0),(47,1,'2023-05-22 13:52:16','2023-05-22 12:52:16','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Selected Projects','selected_projects','publish','closed','closed','','field_646b64cfdbbd5','','','2023-05-31 14:57:56','2023-05-31 13:57:56','',41,'http://localhost:8888/raw-energy/?post_type=acf-field&p=47',10,'acf-field','',0),(48,1,'2023-05-22 13:52:16','2023-05-22 12:52:16','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:11:\"post_object\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:8:\"projects\";}s:11:\"post_status\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:13:\"return_format\";s:6:\"object\";s:8:\"multiple\";i:1;s:10:\"allow_null\";i:0;s:2:\"ui\";i:1;}','Selected Projects','selected_projects','publish','closed','closed','','field_646b6517dbbd7','','','2023-05-31 14:57:57','2023-05-31 13:57:57','',41,'http://localhost:8888/raw-energy/?post_type=acf-field&p=48',11,'acf-field','',0),(49,1,'2023-05-22 15:34:53','2023-05-22 14:34:53','','Group 279','','inherit','open','closed','','group-279','','','2023-05-22 15:34:53','2023-05-22 14:34:53','',14,'http://localhost:8888/raw-energy/wp-content/uploads/2023/05/Group-279.png',0,'attachment','image/png',0),(51,1,'2023-05-22 15:40:33','2023-05-22 14:40:33','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Sidebar','sidebar','publish','closed','closed','','field_646b7ed3bb00c','','','2023-05-31 14:57:56','2023-05-31 13:57:56','',41,'http://localhost:8888/raw-energy/?post_type=acf-field&p=51',7,'acf-field','',0),(52,1,'2023-05-22 15:43:53','2023-05-22 14:43:53','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:1;s:13:\"rows_per_page\";i:20;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";}','Sidebar List','sidebar_list','publish','closed','closed','','field_646b7f362a56c','','','2023-05-31 14:57:56','2023-05-31 13:57:56','',41,'http://localhost:8888/raw-energy/?post_type=acf-field&p=52',9,'acf-field','',0),(53,1,'2023-05-22 15:43:53','2023-05-22 14:43:53','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','List Item','list_item','publish','closed','closed','','field_646b7f912a56d','','','2023-05-22 15:43:53','2023-05-22 14:43:53','',52,'http://localhost:8888/raw-energy/?post_type=acf-field&p=53',0,'acf-field','',0),(54,1,'2023-05-22 16:01:17','2023-05-22 15:01:17','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:12:\"options_page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:22:\"theme-general-settings\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','General Settings','general-settings','publish','closed','closed','','group_646b82cf5cebc','','','2023-07-14 12:32:16','2023-07-14 11:32:16','',0,'http://localhost:8888/raw-energy/?post_type=acf-field-group&p=54',0,'acf-field-group','',0),(55,1,'2023-05-22 16:01:17','2023-05-22 15:01:17','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Contact Details','contact_details','publish','closed','closed','','field_646b82cf912ce','','','2023-05-22 16:01:17','2023-05-22 15:01:17','',54,'http://localhost:8888/raw-energy/?post_type=acf-field&p=55',0,'acf-field','',0),(56,1,'2023-05-22 16:01:17','2023-05-22 15:01:17','a:10:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Email Address','email_address','publish','closed','closed','','field_646b82df912cf','','','2023-05-22 16:01:17','2023-05-22 15:01:17','',54,'http://localhost:8888/raw-energy/?post_type=acf-field&p=56',1,'acf-field','',0),(57,1,'2023-05-22 16:01:17','2023-05-22 15:01:17','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Phone Number','phone_number','publish','closed','closed','','field_646b82e9912d0','','','2023-05-22 16:01:17','2023-05-22 15:01:17','',54,'http://localhost:8888/raw-energy/?post_type=acf-field&p=57',2,'acf-field','',0),(58,1,'2023-05-22 16:01:17','2023-05-22 15:01:17','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Contact Address','contact_address','publish','closed','closed','','field_646b831a912d1','','','2023-05-22 16:01:17','2023-05-22 15:01:17','',54,'http://localhost:8888/raw-energy/?post_type=acf-field&p=58',3,'acf-field','',0),(59,1,'2023-05-22 16:01:17','2023-05-22 15:01:17','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Social Icons','social_icons','publish','closed','closed','','field_646b832c912d2','','','2023-05-22 16:01:17','2023-05-22 15:01:17','',54,'http://localhost:8888/raw-energy/?post_type=acf-field&p=59',4,'acf-field','',0),(60,1,'2023-05-22 16:01:17','2023-05-22 15:01:17','a:7:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','LinkedIn Link','linkedin_link','publish','closed','closed','','field_646b8377912d3','','','2023-05-22 16:01:17','2023-05-22 15:01:17','',54,'http://localhost:8888/raw-energy/?post_type=acf-field&p=60',5,'acf-field','',0),(61,1,'2023-05-22 16:01:17','2023-05-22 15:01:17','a:7:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','Instagram Link','instagram_link','publish','closed','closed','','field_646b8395912d4','','','2023-05-22 16:01:17','2023-05-22 15:01:17','',54,'http://localhost:8888/raw-energy/?post_type=acf-field&p=61',6,'acf-field','',0),(62,1,'2023-05-22 16:01:17','2023-05-22 15:01:17','a:7:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','Facebook Link','facebook_link','publish','closed','closed','','field_646b83a5912d5','','','2023-05-22 16:01:17','2023-05-22 15:01:17','',54,'http://localhost:8888/raw-energy/?post_type=acf-field&p=62',7,'acf-field','',0),(63,1,'2023-05-22 16:01:17','2023-05-22 15:01:17','a:7:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','Twitter Link','twitter_link','publish','closed','closed','','field_646b83b4912d6','','','2023-05-22 16:01:17','2023-05-22 15:01:17','',54,'http://localhost:8888/raw-energy/?post_type=acf-field&p=63',8,'acf-field','',0),(64,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"page_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"front_page\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:1:{i:0;s:11:\"the_content\";}s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Homepage','homepage','publish','closed','closed','','group_646b8576d6509','','','2023-05-22 17:24:01','2023-05-22 16:24:01','',0,'http://localhost:8888/raw-energy/?post_type=acf-field-group&p=64',0,'acf-field-group','',0),(65,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Hero','hero','publish','closed','closed','','field_646b85779b752','','','2023-05-22 16:22:56','2023-05-22 15:22:56','',64,'http://localhost:8888/raw-energy/?post_type=acf-field&p=65',0,'acf-field','',0),(66,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Hero Carousel','hero_carousel','publish','closed','closed','','field_646b85999b753','','','2023-05-22 16:22:56','2023-05-22 15:22:56','',64,'http://localhost:8888/raw-energy/?post_type=acf-field&p=66',1,'acf-field','',0),(67,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:14:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:5:\"video\";s:5:\"Video\";s:5:\"image\";s:5:\"Image\";}s:13:\"default_value\";s:5:\"image\";s:13:\"return_format\";s:5:\"value\";s:8:\"multiple\";i:0;s:10:\"allow_null\";i:0;s:2:\"ui\";i:0;s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Slide Background Type','slide_background_type','publish','closed','closed','','field_646b85a69b754','','','2023-05-22 16:22:56','2023-05-22 15:22:56','',66,'http://localhost:8888/raw-energy/?post_type=acf-field&p=67',0,'acf-field','',0),(68,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:16:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_646b85a69b754\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"image\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:12:\"preview_size\";s:6:\"medium\";}','Slide Image','slide_image','publish','closed','closed','','field_646b85c69b755','','','2023-05-22 16:22:56','2023-05-22 15:22:56','',66,'http://localhost:8888/raw-energy/?post_type=acf-field&p=68',1,'acf-field','',0),(69,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"oembed\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_646b85a69b754\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"video\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}','Slide Video','slide_video','publish','closed','closed','','field_646b85db9b756','','','2023-05-22 16:22:56','2023-05-22 15:22:56','',66,'http://localhost:8888/raw-energy/?post_type=acf-field&p=69',2,'acf-field','',0),(70,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Slide Title','slide_title','publish','closed','closed','','field_646b85ed9b757','','','2023-05-22 16:22:56','2023-05-22 15:22:56','',66,'http://localhost:8888/raw-energy/?post_type=acf-field&p=70',3,'acf-field','',0),(71,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Slide Subtitle','slide_subtitle','publish','closed','closed','','field_646b85f99b758','','','2023-05-22 16:22:56','2023-05-22 15:22:56','',66,'http://localhost:8888/raw-energy/?post_type=acf-field&p=71',4,'acf-field','',0),(72,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Ratings','ratings','publish','closed','closed','','field_646b86269b759','','','2023-05-22 17:21:15','2023-05-22 16:21:15','',64,'http://localhost:8888/raw-energy/?post_type=acf-field&p=72',5,'acf-field','',0),(73,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Ratings Title','ratings_title','publish','closed','closed','','field_646b86339b75a','','','2023-05-22 17:21:15','2023-05-22 16:21:15','',64,'http://localhost:8888/raw-energy/?post_type=acf-field&p=73',6,'acf-field','',0),(74,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:9:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"message\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:44:\"Ratings are defined by the Trustpilot Widget\";s:9:\"new_lines\";s:7:\"wpautop\";s:8:\"esc_html\";i:0;}','Ratings Placement','ratings_placement','publish','closed','closed','','field_646b871c9b75c','','','2023-05-22 17:21:15','2023-05-22 16:21:15','',64,'http://localhost:8888/raw-energy/?post_type=acf-field&p=74',7,'acf-field','',0),(75,1,'2023-05-22 16:22:56','2023-05-22 15:22:56','a:9:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"message\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:72:\"Testimonials can be found under the Testimonials tab in the left sidebar\";s:9:\"new_lines\";s:7:\"wpautop\";s:8:\"esc_html\";i:0;}','Testimonials Placement','testimonials_placement','publish','closed','closed','','field_646b86f69b75b','','','2023-05-22 17:21:15','2023-05-22 16:21:15','',64,'http://localhost:8888/raw-energy/?post_type=acf-field&p=75',8,'acf-field','',0),(76,1,'2023-05-22 17:21:15','2023-05-22 16:21:15','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Services','services','publish','closed','closed','','field_646b9623ea0a3','','','2023-05-22 17:21:15','2023-05-22 16:21:15','',64,'http://localhost:8888/raw-energy/?post_type=acf-field&p=76',2,'acf-field','',0),(77,1,'2023-05-22 17:21:15','2023-05-22 16:21:15','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Featured Services Title','featured_services_title','publish','closed','closed','','field_646b9635ea0a4','','','2023-05-22 17:21:15','2023-05-22 16:21:15','',64,'http://localhost:8888/raw-energy/?post_type=acf-field&p=77',3,'acf-field','',0),(78,1,'2023-05-22 17:21:15','2023-05-22 16:21:15','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Services Title','services_title','publish','closed','closed','','field_646b964aea0a5','','','2023-05-22 17:21:15','2023-05-22 16:21:15','',64,'http://localhost:8888/raw-energy/?post_type=acf-field&p=78',4,'acf-field','',0),(79,1,'2023-05-22 17:21:59','2023-05-22 16:21:59','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:8:\"services\";}}}s:8:\"position\";s:4:\"side\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Single Services Sidebar','single-services-sidebar','publish','closed','closed','','group_646b96807de4d','','','2023-05-23 15:12:29','2023-05-23 14:12:29','',0,'http://localhost:8888/raw-energy/?post_type=acf-field-group&p=79',0,'acf-field-group','',0),(80,1,'2023-05-22 17:21:59','2023-05-22 16:21:59','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Custom Link Text','custom_link_text','publish','closed','closed','','field_646b9680b37d3','','','2023-05-22 17:21:59','2023-05-22 16:21:59','',79,'http://localhost:8888/raw-energy/?post_type=acf-field&p=80',0,'acf-field','',0),(81,1,'2023-05-22 17:24:36','2023-05-22 16:24:36','','Home','','inherit','closed','closed','','6-revision-v1','','','2023-05-22 17:24:36','2023-05-22 16:24:36','',6,'http://localhost:8888/raw-energy/?p=81',0,'revision','',0),(82,1,'2023-05-22 17:24:44','2023-05-22 16:24:44','','Home','','inherit','closed','closed','','6-revision-v1','','','2023-05-22 17:24:44','2023-05-22 16:24:44','',6,'http://localhost:8888/raw-energy/?p=82',0,'revision','',0),(83,1,'2023-05-22 18:08:58','2023-05-22 17:08:58','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:12:\"options_page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:18:\"theme-testimonials\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Testimonials','testimonials','publish','closed','closed','','group_646ba143e42d4','','','2023-05-22 18:08:58','2023-05-22 17:08:58','',0,'http://localhost:8888/raw-energy/?post_type=acf-field-group&p=83',0,'acf-field-group','',0),(84,1,'2023-05-22 18:08:58','2023-05-22 17:08:58','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:1;s:13:\"rows_per_page\";i:5;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";}','Testimonials','testimonials','publish','closed','closed','','field_646ba144f9c78','','','2023-05-22 18:08:58','2023-05-22 17:08:58','',83,'http://localhost:8888/raw-energy/?post_type=acf-field&p=84',0,'acf-field','',0),(85,1,'2023-05-22 18:08:58','2023-05-22 17:08:58','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Testimonial Title','testimonial_title','publish','closed','closed','','field_646ba15ef9c79','','','2023-05-22 18:08:58','2023-05-22 17:08:58','',84,'http://localhost:8888/raw-energy/?post_type=acf-field&p=85',0,'acf-field','',0),(86,1,'2023-05-22 18:08:58','2023-05-22 17:08:58','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Testimonial Content','testimonial_content','publish','closed','closed','','field_646ba16bf9c7a','','','2023-05-22 18:08:58','2023-05-22 17:08:58','',84,'http://localhost:8888/raw-energy/?post_type=acf-field&p=86',1,'acf-field','',0),(87,1,'2023-05-22 18:08:58','2023-05-22 17:08:58','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Testimonial Author','testimonial_author','publish','closed','closed','','field_646ba179f9c7b','','','2023-05-22 18:08:58','2023-05-22 17:08:58','',84,'http://localhost:8888/raw-energy/?post_type=acf-field&p=87',2,'acf-field','',0),(88,1,'2023-05-22 18:08:58','2023-05-22 17:08:58','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"radio\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:5:{i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";}s:13:\"default_value\";s:0:\"\";s:13:\"return_format\";s:5:\"label\";s:10:\"allow_null\";i:0;s:12:\"other_choice\";i:0;s:6:\"layout\";s:8:\"vertical\";s:17:\"save_other_choice\";i:0;}','Testimonial Star Rating','testimonial_star_rating','publish','closed','closed','','field_646ba182f9c7c','','','2023-05-22 18:08:58','2023-05-22 17:08:58','',84,'http://localhost:8888/raw-energy/?post_type=acf-field&p=88',3,'acf-field','',0),(89,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:24:\"page-templates/about.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:1:{i:0;s:11:\"the_content\";}s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','About','about','publish','closed','closed','','group_646bbb63a2285','','','2023-05-22 21:43:51','2023-05-22 20:43:51','',0,'http://localhost:8888/raw-energy/?post_type=acf-field-group&p=89',0,'acf-field-group','',0),(90,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Hero','hero','publish','closed','closed','','field_646bbb63a0464','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=90',0,'acf-field','',0),(91,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:16:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:12:\"preview_size\";s:6:\"medium\";}','Hero Background','hero_background','publish','closed','closed','','field_646bbb6ea0465','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=91',1,'acf-field','',0),(92,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Intro','intro','publish','closed','closed','','field_646bbb81a0466','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=92',2,'acf-field','',0),(93,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Intro Title','intro_title','publish','closed','closed','','field_646bbb89a0467','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=93',3,'acf-field','',0),(94,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Intro Copy','intro_copy','publish','closed','closed','','field_646bbb91a0468','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=94',4,'acf-field','',0),(95,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Sectors','sectors','publish','closed','closed','','field_646bbb9ca0469','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=95',5,'acf-field','',0),(96,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Sectors Title','sectors_title','publish','closed','closed','','field_646bbba4a046a','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=96',6,'acf-field','',0),(97,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Sectors','sectors','publish','closed','closed','','field_646bbbb1a046b','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=97',7,'acf-field','',0),(98,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:16:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:12:\"preview_size\";s:6:\"medium\";}','Sector Image','sector_image','publish','closed','closed','','field_646bbbbba046c','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',97,'http://localhost:8888/raw-energy/?post_type=acf-field&p=98',0,'acf-field','',0),(99,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Sector Title','sector_title','publish','closed','closed','','field_646bbbd2a046d','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',97,'http://localhost:8888/raw-energy/?post_type=acf-field&p=99',1,'acf-field','',0),(100,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Sector Subtitle','sector_subtitle','publish','closed','closed','','field_646bbbd9a046e','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',97,'http://localhost:8888/raw-energy/?post_type=acf-field&p=100',2,'acf-field','',0),(101,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Sector Copy','sector_copy','publish','closed','closed','','field_646bbbe7a046f','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',97,'http://localhost:8888/raw-energy/?post_type=acf-field&p=101',3,'acf-field','',0),(102,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Sectors List','sectors_list','publish','closed','closed','','field_646bbbf5a0470','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',97,'http://localhost:8888/raw-energy/?post_type=acf-field&p=102',4,'acf-field','',0),(103,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','List Item','list_item','publish','closed','closed','','field_646bbbffa0471','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',102,'http://localhost:8888/raw-energy/?post_type=acf-field&p=103',0,'acf-field','',0),(104,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Blocks','blocks','publish','closed','closed','','field_646bbc11a0472','','','2023-05-22 21:43:51','2023-05-22 20:43:51','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=104',9,'acf-field','',0),(105,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Block Title','block_title','publish','closed','closed','','field_646bbc1da0473','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',104,'http://localhost:8888/raw-energy/?post_type=acf-field&p=105',0,'acf-field','',0),(106,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Block Copy','block_copy','publish','closed','closed','','field_646bbc23a0474','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',104,'http://localhost:8888/raw-energy/?post_type=acf-field&p=106',1,'acf-field','',0),(107,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:16:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:12:\"preview_size\";s:6:\"medium\";}','Block Image','block_image','publish','closed','closed','','field_646bbc30a0475','','','2023-05-22 20:02:47','2023-05-22 19:02:47','',104,'http://localhost:8888/raw-energy/?post_type=acf-field&p=107',2,'acf-field','',0),(108,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Outro','outro','publish','closed','closed','','field_646bbc42a0476','','','2023-05-22 21:43:51','2023-05-22 20:43:51','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=108',10,'acf-field','',0),(109,1,'2023-05-22 20:02:47','2023-05-22 19:02:47','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Outro Title','outro_title','publish','closed','closed','','field_646bbc4da0477','','','2023-05-22 21:43:51','2023-05-22 20:43:51','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=109',11,'acf-field','',0),(110,1,'2023-05-22 21:30:29','2023-05-22 20:30:29','','About','','inherit','closed','closed','','8-revision-v1','','','2023-05-22 21:30:29','2023-05-22 20:30:29','',8,'http://localhost:8888/raw-energy/?p=110',0,'revision','',0),(111,1,'2023-05-22 21:43:23','2023-05-22 20:43:23','','About','','inherit','closed','closed','','8-revision-v1','','','2023-05-22 21:43:23','2023-05-22 20:43:23','',8,'http://localhost:8888/raw-energy/?p=111',0,'revision','',0),(112,1,'2023-05-22 21:43:51','2023-05-22 20:43:51','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Blocks','blocks','publish','closed','closed','','field_646bd3fad2378','','','2023-05-22 21:43:51','2023-05-22 20:43:51','',89,'http://localhost:8888/raw-energy/?post_type=acf-field&p=112',8,'acf-field','',0),(113,1,'2023-05-22 21:44:42','2023-05-22 20:44:42','','About','','inherit','closed','closed','','8-revision-v1','','','2023-05-22 21:44:42','2023-05-22 20:44:42','',8,'http://localhost:8888/raw-energy/?p=113',0,'revision','',0),(114,1,'2023-05-22 21:46:16','2023-05-22 20:46:16','','shutterstock_178694141','','inherit','open','closed','','shutterstock_178694141','','','2023-05-22 21:46:16','2023-05-22 20:46:16','',8,'http://localhost:8888/raw-energy/wp-content/uploads/2023/05/shutterstock_178694141.png',0,'attachment','image/png',0),(115,1,'2023-05-22 21:46:22','2023-05-22 20:46:22','','About','','inherit','closed','closed','','8-revision-v1','','','2023-05-22 21:46:22','2023-05-22 20:46:22','',8,'http://localhost:8888/raw-energy/?p=115',0,'revision','',0),(116,1,'2023-05-22 21:47:11','2023-05-22 20:47:11','','Screenshot 2023-05-10 at 08.11.01','','inherit','open','closed','','screenshot-2023-05-10-at-08-11-01','','','2023-05-22 21:47:11','2023-05-22 20:47:11','',8,'http://localhost:8888/raw-energy/wp-content/uploads/2023/05/Screenshot-2023-05-10-at-08.11.01.png',0,'attachment','image/png',0),(117,1,'2023-05-22 21:47:21','2023-05-22 20:47:21','','About','','inherit','closed','closed','','8-revision-v1','','','2023-05-22 21:47:21','2023-05-22 20:47:21','',8,'http://localhost:8888/raw-energy/?p=117',0,'revision','',0),(118,1,'2023-05-22 22:02:38','2023-05-22 21:02:38','','53457355-0-image-a-7_1643315299161','','inherit','open','closed','','53457355-0-image-a-7_1643315299161','','','2023-05-22 22:02:38','2023-05-22 21:02:38','',8,'http://localhost:8888/raw-energy/wp-content/uploads/2023/05/53457355-0-image-a-7_1643315299161.png',0,'attachment','image/png',0),(119,1,'2023-05-22 22:02:56','2023-05-22 21:02:56','','About','','inherit','closed','closed','','8-revision-v1','','','2023-05-22 22:02:56','2023-05-22 21:02:56','',8,'http://localhost:8888/raw-energy/?p=119',0,'revision','',0),(120,1,'2023-05-22 22:14:03','2023-05-22 21:14:03','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:8:\"projects\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:1:{i:0;s:11:\"the_content\";}s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Projects','projects','publish','closed','closed','','group_646bdab5d5ba0','','','2023-05-22 22:15:48','2023-05-22 21:15:48','',0,'http://localhost:8888/raw-energy/?post_type=acf-field-group&p=120',0,'acf-field-group','',0),(121,1,'2023-05-22 22:14:03','2023-05-22 21:14:03','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:6;s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Intro','intro','publish','closed','closed','','field_646bdab61db3e','','','2023-05-22 22:14:03','2023-05-22 21:14:03','',120,'http://localhost:8888/raw-energy/?post_type=acf-field&p=121',0,'acf-field','',0),(122,1,'2023-05-22 22:14:03','2023-05-22 21:14:03','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:12;s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Copy','copy','publish','closed','closed','','field_646bdad41db3f','','','2023-05-22 22:14:03','2023-05-22 21:14:03','',120,'http://localhost:8888/raw-energy/?post_type=acf-field&p=122',1,'acf-field','',0),(123,1,'2023-05-22 22:14:03','2023-05-22 21:14:03','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Stats','stats','publish','closed','closed','','field_646bdaec1db40','','','2023-05-22 22:14:03','2023-05-22 21:14:03','',120,'http://localhost:8888/raw-energy/?post_type=acf-field&p=123',2,'acf-field','',0),(124,1,'2023-05-22 22:14:03','2023-05-22 21:14:03','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Stat','stat','publish','closed','closed','','field_646bdaf51db41','','','2023-05-22 22:14:03','2023-05-22 21:14:03','',123,'http://localhost:8888/raw-energy/?post_type=acf-field&p=124',0,'acf-field','',0),(125,1,'2023-05-22 22:14:03','2023-05-22 21:14:03','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Images','images','publish','closed','closed','','field_646bdb041db42','','','2023-05-22 22:14:03','2023-05-22 21:14:03','',120,'http://localhost:8888/raw-energy/?post_type=acf-field&p=125',3,'acf-field','',0),(126,1,'2023-05-22 22:14:03','2023-05-22 21:14:03','a:16:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";i:0;s:10:\"min_height\";i:0;s:8:\"min_size\";i:0;s:9:\"max_width\";i:0;s:10:\"max_height\";i:0;s:8:\"max_size\";i:0;s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_646bdb041db43','','','2023-05-22 22:15:48','2023-05-22 21:15:48','',125,'http://localhost:8888/raw-energy/?post_type=acf-field&p=126',0,'acf-field','',0),(127,1,'2023-05-22 22:15:57','2023-05-22 21:15:57','','AD-2','','inherit','open','closed','','ad-2','','','2023-05-22 22:15:57','2023-05-22 21:15:57','',38,'http://localhost:8888/raw-energy/wp-content/uploads/2023/05/AD-2.png',0,'attachment','image/png',0),(128,1,'2023-05-22 22:15:57','2023-05-22 21:15:57','','AD','','inherit','open','closed','','ad','','','2023-05-22 22:15:57','2023-05-22 21:15:57','',38,'http://localhost:8888/raw-energy/wp-content/uploads/2023/05/AD.png',0,'attachment','image/png',0),(129,1,'2023-05-22 22:15:59','2023-05-22 21:15:59','','Biomass','','inherit','open','closed','','biomass','','','2023-05-22 22:15:59','2023-05-22 21:15:59','',38,'http://localhost:8888/raw-energy/wp-content/uploads/2023/05/Biomass.png',0,'attachment','image/png',0),(130,1,'2023-05-22 22:15:59','2023-05-22 21:15:59','','shutterstock_99871745+(1)','','inherit','open','closed','','shutterstock_998717451','','','2023-05-22 22:15:59','2023-05-22 21:15:59','',38,'http://localhost:8888/raw-energy/wp-content/uploads/2023/05/shutterstock_998717451.png',0,'attachment','image/png',0),(131,1,'2023-05-22 22:59:26','2023-05-22 21:59:26','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:23:\"page-templates/team.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:1:{i:0;s:11:\"the_content\";}s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Team','team','publish','closed','closed','','group_646be583c1718','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',0,'http://localhost:8888/raw-energy/?post_type=acf-field-group&p=131',0,'acf-field-group','',0),(132,1,'2023-05-22 22:59:26','2023-05-22 21:59:26','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Hero','hero','publish','closed','closed','','field_646be5837838c','','','2023-05-22 22:59:26','2023-05-22 21:59:26','',131,'http://localhost:8888/raw-energy/?post_type=acf-field&p=132',0,'acf-field','',0),(133,1,'2023-05-22 22:59:26','2023-05-22 21:59:26','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Hero Title','hero_title','publish','closed','closed','','field_646be59d7838d','','','2023-05-22 22:59:26','2023-05-22 21:59:26','',131,'http://localhost:8888/raw-energy/?post_type=acf-field&p=133',1,'acf-field','',0),(134,1,'2023-05-22 22:59:26','2023-05-22 21:59:26','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Hero Copy','hero_copy','publish','closed','closed','','field_646be5a37838e','','','2023-05-22 22:59:26','2023-05-22 21:59:26','',131,'http://localhost:8888/raw-energy/?post_type=acf-field&p=134',2,'acf-field','',0),(135,1,'2023-05-22 22:59:46','2023-05-22 21:59:46','','Team','','inherit','closed','closed','','10-revision-v1','','','2023-05-22 22:59:46','2023-05-22 21:59:46','',10,'http://localhost:8888/raw-energy/?p=135',0,'revision','',0),(136,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Team','team','publish','closed','closed','','field_646be73b14817','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',131,'http://localhost:8888/raw-energy/?post_type=acf-field&p=136',3,'acf-field','',0),(137,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Team Members','team_members','publish','closed','closed','','field_646be74314818','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',131,'http://localhost:8888/raw-energy/?post_type=acf-field&p=137',4,'acf-field','',0),(138,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:16:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:12:\"preview_size\";s:6:\"medium\";}','Team Member Photo','team_member_photo','publish','closed','closed','','field_646be75714819','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',137,'http://localhost:8888/raw-energy/?post_type=acf-field&p=138',0,'acf-field','',0),(139,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Team Member Name','team_member_name','publish','closed','closed','','field_646be7621481a','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',137,'http://localhost:8888/raw-energy/?post_type=acf-field&p=139',1,'acf-field','',0),(140,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Team Member Title','team_member_title','publish','closed','closed','','field_646be76c1481b','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',137,'http://localhost:8888/raw-energy/?post_type=acf-field&p=140',2,'acf-field','',0),(141,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Team Member Bio','team_member_bio','publish','closed','closed','','field_646be7781481c','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',137,'http://localhost:8888/raw-energy/?post_type=acf-field&p=141',3,'acf-field','',0),(142,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Join our team','join_our_team','publish','closed','closed','','field_646be7921481d','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',131,'http://localhost:8888/raw-energy/?post_type=acf-field&p=142',5,'acf-field','',0),(143,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Title','join_our_team_title','publish','closed','closed','','field_646be79e1481e','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',131,'http://localhost:8888/raw-energy/?post_type=acf-field&p=143',6,'acf-field','',0),(144,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Vacancies Copy','join_our_team_vacancies','publish','closed','closed','','field_646be7b01481f','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',131,'http://localhost:8888/raw-energy/?post_type=acf-field&p=144',7,'acf-field','',0),(145,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Join Our Team Perks','join_our_team_perks','publish','closed','closed','','field_646be7c514820','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',131,'http://localhost:8888/raw-energy/?post_type=acf-field&p=145',8,'acf-field','',0),(146,1,'2023-05-22 23:08:45','2023-05-22 22:08:45','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Single Perk','single_perk','publish','closed','closed','','field_646be7d514821','','','2023-05-22 23:08:45','2023-05-22 22:08:45','',145,'http://localhost:8888/raw-energy/?post_type=acf-field&p=146',0,'acf-field','',0),(147,1,'2023-05-22 23:11:41','2023-05-22 22:11:41','','Team','','inherit','closed','closed','','10-revision-v1','','','2023-05-22 23:11:41','2023-05-22 22:11:41','',10,'http://localhost:8888/raw-energy/?p=147',0,'revision','',0),(148,1,'2023-05-22 23:30:40','2023-05-22 22:30:40','','Team','','inherit','closed','closed','','10-revision-v1','','','2023-05-22 23:30:40','2023-05-22 22:30:40','',10,'http://localhost:8888/raw-energy/?p=148',0,'revision','',0),(149,1,'2023-05-22 23:37:48','2023-05-22 22:37:48','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:26:\"page-templates/contact.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:1:{i:0;s:11:\"the_content\";}s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Contact','contact','publish','closed','closed','','group_646bee8647dd7','','','2023-05-22 23:42:29','2023-05-22 22:42:29','',0,'http://localhost:8888/raw-energy/?post_type=acf-field-group&p=149',0,'acf-field-group','',0),(150,1,'2023-05-22 23:37:48','2023-05-22 22:37:48','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Hero','hero','publish','closed','closed','','field_646bee863e1c9','','','2023-05-22 23:37:48','2023-05-22 22:37:48','',149,'http://localhost:8888/raw-energy/?post_type=acf-field&p=150',0,'acf-field','',0),(151,1,'2023-05-22 23:37:48','2023-05-22 22:37:48','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Hero Title','hero_title','publish','closed','closed','','field_646bee9e3e1ca','','','2023-05-22 23:37:48','2023-05-22 22:37:48','',149,'http://localhost:8888/raw-energy/?post_type=acf-field&p=151',1,'acf-field','',0),(152,1,'2023-05-22 23:37:48','2023-05-22 22:37:48','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Contact Copy','contact_copy','publish','closed','closed','','field_646beea53e1cb','','','2023-05-22 23:37:48','2023-05-22 22:37:48','',149,'http://localhost:8888/raw-energy/?post_type=acf-field&p=152',2,'acf-field','',0),(153,1,'2023-05-22 23:38:49','2023-05-22 22:38:49','','Contact','','inherit','closed','closed','','12-revision-v1','','','2023-05-22 23:38:49','2023-05-22 22:38:49','',12,'http://localhost:8888/raw-energy/?p=153',0,'revision','',0),(154,1,'2023-05-22 23:41:34','2023-05-22 22:41:34','a:10:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:10:\"google_map\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:10:\"center_lat\";s:0:\"\";s:10:\"center_lng\";s:0:\"\";s:4:\"zoom\";s:0:\"\";s:6:\"height\";s:0:\"\";}','Location','location','publish','closed','closed','','field_646bef7321c28','','','2023-05-22 23:41:34','2023-05-22 22:41:34','',149,'http://localhost:8888/raw-energy/?post_type=acf-field&p=154',3,'acf-field','',0),(155,1,'2023-05-22 23:41:34','2023-05-22 22:41:34','a:9:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"forms\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:11:\"post_object\";s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;}','Form ID','form_id','publish','closed','closed','','field_646bef9921c29','','','2023-05-22 23:42:29','2023-05-22 22:42:29','',149,'http://localhost:8888/raw-energy/?post_type=acf-field&p=155',4,'acf-field','',0),(156,1,'2023-05-22 23:42:56','2023-05-22 22:42:56','','Contact','','inherit','closed','closed','','12-revision-v1','','','2023-05-22 23:42:56','2023-05-22 22:42:56','',12,'http://localhost:8888/raw-energy/?p=156',0,'revision','',0),(158,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','158','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=158',1,'nav_menu_item','',0),(159,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','159','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=159',2,'nav_menu_item','',0),(160,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','160','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=160',3,'nav_menu_item','',0),(161,1,'2023-05-31 16:12:44','2023-05-22 23:02:35','','EV Charging','','publish','closed','closed','','161','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=161',4,'nav_menu_item','',0),(162,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','162','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=162',5,'nav_menu_item','',0),(163,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','163','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=163',6,'nav_menu_item','',0),(164,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','164','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=164',7,'nav_menu_item','',0),(165,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','165','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=165',8,'nav_menu_item','',0),(166,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','166','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=166',9,'nav_menu_item','',0),(167,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','167','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=167',10,'nav_menu_item','',0),(168,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','168','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=168',11,'nav_menu_item','',0),(169,1,'2023-05-31 16:12:44','2023-05-22 23:02:35',' ','','','publish','closed','closed','','169','','','2023-05-31 16:12:44','2023-05-31 15:12:44','',0,'http://localhost:8888/raw-energy/?p=169',12,'nav_menu_item','',0),(170,1,'2023-05-23 00:03:10','2023-05-22 23:03:10','Projects','Projects','','publish','closed','closed','','projects-2','','','2023-05-23 00:03:10','2023-05-22 23:03:10','',0,'http://localhost:8888/raw-energy/?p=170',3,'nav_menu_item','',0),(171,1,'2023-05-23 00:03:10','2023-05-22 23:03:10','Services','Services','','publish','closed','closed','','services-2','','','2023-05-23 00:03:10','2023-05-22 23:03:10','',0,'http://localhost:8888/raw-energy/?p=171',1,'nav_menu_item','',0),(172,1,'2023-05-23 00:04:39','2023-05-22 23:04:39',' ','','','publish','closed','closed','','172','','','2023-05-23 00:04:39','2023-05-22 23:04:39','',0,'http://localhost:8888/raw-energy/?p=172',1,'nav_menu_item','',0),(173,1,'2023-05-23 00:04:39','2023-05-22 23:04:39',' ','','','publish','closed','closed','','173','','','2023-05-23 00:04:39','2023-05-22 23:04:39','',0,'http://localhost:8888/raw-energy/?p=173',2,'nav_menu_item','',0),(174,1,'2023-05-23 00:04:39','2023-05-22 23:04:39','Services','Services','','publish','closed','closed','','services','','','2023-05-23 00:04:39','2023-05-22 23:04:39','',0,'http://localhost:8888/raw-energy/?p=174',3,'nav_menu_item','',0),(175,1,'2023-05-23 00:04:39','2023-05-22 23:04:39','Projects','Projects','','publish','closed','closed','','projects','','','2023-05-23 00:04:39','2023-05-22 23:04:39','',0,'http://localhost:8888/raw-energy/?p=175',4,'nav_menu_item','',0),(176,1,'2023-05-23 00:04:39','2023-05-22 23:04:39',' ','','','publish','closed','closed','','176','','','2023-05-23 00:04:39','2023-05-22 23:04:39','',0,'http://localhost:8888/raw-energy/?p=176',5,'nav_menu_item','',0),(177,1,'2023-05-23 00:04:54','2023-05-22 23:04:54','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://localhost:8888/raw-energy.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymised string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service Privacy Policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognise and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2023-05-23 00:04:54','2023-05-22 23:04:54','',3,'http://localhost:8888/raw-energy/?p=177',0,'revision','',0),(178,1,'2023-05-23 00:04:59','2023-05-22 23:04:59','','Cookies','','publish','closed','closed','','cookies','','','2023-05-23 00:04:59','2023-05-22 23:04:59','',0,'http://localhost:8888/raw-energy/?page_id=178',0,'page','',0),(179,1,'2023-05-23 00:04:59','2023-05-22 23:04:59','','Cookies','','inherit','closed','closed','','178-revision-v1','','','2023-05-23 00:04:59','2023-05-22 23:04:59','',178,'http://localhost:8888/raw-energy/?p=179',0,'revision','',0),(180,1,'2023-05-23 00:05:18','2023-05-22 23:05:18',' ','','','publish','closed','closed','','180','','','2023-05-23 00:05:18','2023-05-22 23:05:18','',0,'http://localhost:8888/raw-energy/?p=180',1,'nav_menu_item','',0),(181,1,'2023-05-23 00:05:18','2023-05-22 23:05:18',' ','','','publish','closed','closed','','181','','','2023-05-23 00:05:18','2023-05-22 23:05:18','',0,'http://localhost:8888/raw-energy/?p=181',2,'nav_menu_item','',0),(182,1,'2023-05-23 10:41:10','2023-05-23 09:41:10','<!-- wp:heading -->\r\n<p style=\"font-weight: 400;\">At RAW Energy Ltd we recognise that collecting and managing personal information brings with it certain responsibilities.</p>\r\n<p style=\"font-weight: 400;\">In line with changes to data protection legislation, to be introduced on 25<sup>th</sup> May 2018, our privacy policy is detailed below. This document outlines our commitment to managing data responsibly, together with what we can and cannot do with your information.</p>\r\n<h3 style=\"font-weight: 400;\"><strong>What information do we hold?</strong></h3>\r\n<p style=\"font-weight: 400;\">The information RAW Energy Ltd holds about you or your company varies, depending upon the nature and length of the working relationship we have with you. We will use the data we hold to:</p>\r\n<ul>\r\n<li>manage customer service</li>\r\n<li>inform you of projects we are involved in which might be of interest to you</li>\r\n<li>fulfil contractual obligations between you, us and designated third parties.</li>\r\n</ul>\r\n<h3 style=\"font-weight: 400;\"><strong>How long will we hold your information for?</strong></h3>\r\n<p style=\"font-weight: 400;\">We will ensure that your information is held for as long as it is required, and no longer. This will be reviewed annually, every May. Any information retained which is no longer relevant to our business function and relationship with you will be disposed of in a safe and secure manner.</p>\r\n<h3 style=\"font-weight: 400;\"><strong>Protecting your data</strong></h3>\r\n<p style=\"font-weight: 400;\">RAW Energy Ltd has stringent security measures in place to ensure information is not shared internally or externally with parties who do not require access to it. Our staff only have access to information relevant to their specific roles within the organisation.</p>\r\n<h3 style=\"font-weight: 400;\"><strong>Can I access the information held about me?</strong></h3>\r\n<p style=\"font-weight: 400;\">You have the right to request details of all the information we hold about you. Please write to or email us:</p>\r\n<p style=\"font-weight: 400;\">RAW Energy Ltd</p>\r\n<p style=\"font-weight: 400;\">Trent Lodge</p>\r\n<p style=\"font-weight: 400;\">Stroud Road</p>\r\n<p style=\"font-weight: 400;\">Cirencester</p>\r\n<p style=\"font-weight: 400;\">GL7 6JN</p>\r\n<p style=\"font-weight: 400;\">Email – <a href=\"mailto:info@rawergy.co.uk\">info@rawergy.co.uk</a></p>\r\n<h3 style=\"font-weight: 400;\"><strong>Disclosing your data</strong></h3>\r\n<p><span style=\"font-weight: 400;\">We will never share your information for marketing purposes. However, we may share your details with third parties relevant to particular projects that you, and we, are involved in. For example, local authorities, our legal representatives, other professional service providers. We will only provide these third parties with information they need to deliver the service we have engaged them in. We may also share your information if legally instructed to by courts, police of other law enforcement agencies. </span></p>\r\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2023-05-23 10:41:10','2023-05-23 09:41:10','',3,'http://localhost:8888/raw-energy/?p=182',0,'revision','',0),(183,1,'2023-05-23 10:41:51','2023-05-23 09:41:51','<p style=\"font-weight: 400;\">At RAW Energy Ltd we recognise that collecting and managing personal information brings with it certain responsibilities.</p>\r\n<p style=\"font-weight: 400;\">In line with changes to data protection legislation, to be introduced on 25<sup>th</sup> May 2018, our privacy policy is detailed below. This document outlines our commitment to managing data responsibly, together with what we can and cannot do with your information.</p>\r\n<h4 style=\"font-weight: 400;\">What information do we hold?</h4>\r\n<p style=\"font-weight: 400;\">The information RAW Energy Ltd holds about you or your company varies, depending upon the nature and length of the working relationship we have with you. We will use the data we hold to:</p>\r\n<ul>\r\n<li>manage customer service</li>\r\n<li>inform you of projects we are involved in which might be of interest to you</li>\r\n<li>fulfil contractual obligations between you, us and designated third parties.</li>\r\n</ul>\r\n<h4 style=\"font-weight: 400;\">How long will we hold your information for?</h4>\r\n<p style=\"font-weight: 400;\">We will ensure that your information is held for as long as it is required, and no longer. This will be reviewed annually, every May. Any information retained which is no longer relevant to our business function and relationship with you will be disposed of in a safe and secure manner.</p>\r\n<h4 style=\"font-weight: 400;\">Protecting your data</h4>\r\n<p style=\"font-weight: 400;\">RAW Energy Ltd has stringent security measures in place to ensure information is not shared internally or externally with parties who do not require access to it. Our staff only have access to information relevant to their specific roles within the organisation.</p>\r\n<h4 style=\"font-weight: 400;\">Can I access the information held about me?</h4>\r\n<p style=\"font-weight: 400;\">You have the right to request details of all the information we hold about you. Please write to or email us:</p>\r\n<p style=\"font-weight: 400;\">RAW Energy Ltd</p>\r\n<p style=\"font-weight: 400;\">Trent Lodge</p>\r\n<p style=\"font-weight: 400;\">Stroud Road</p>\r\n<p style=\"font-weight: 400;\">Cirencester</p>\r\n<p style=\"font-weight: 400;\">GL7 6JN</p>\r\n<p style=\"font-weight: 400;\">Email – <a href=\"mailto:info@rawergy.co.uk\">info@rawergy.co.uk</a></p>\r\n<h4 style=\"font-weight: 400;\">Disclosing your data</h4>\r\n<p><span style=\"font-weight: 400;\">We will never share your information for marketing purposes. However, we may share your details with third parties relevant to particular projects that you, and we, are involved in. For example, local authorities, our legal representatives, other professional service providers. We will only provide these third parties with information they need to deliver the service we have engaged them in. We may also share your information if legally instructed to by courts, police of other law enforcement agencies. </span></p>\r\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2023-05-23 10:41:51','2023-05-23 09:41:51','',3,'http://localhost:8888/raw-energy/?p=183',0,'revision','',0),(184,1,'2023-05-23 10:42:33','2023-05-23 09:42:33','<p style=\"font-weight: 400;\">At RAW Energy Ltd we recognise that collecting and managing personal information brings with it certain responsibilities.</p>\r\n<p style=\"font-weight: 400;\">In line with changes to data protection legislation, to be introduced on 25<sup>th</sup> May 2018, our privacy policy is detailed below. This document outlines our commitment to managing data responsibly, together with what we can and cannot do with your information.</p>\r\n\r\n<h5 style=\"font-weight: 400;\"><strong>What information do we hold?</strong></h5>\r\n<p style=\"font-weight: 400;\">The information RAW Energy Ltd holds about you or your company varies, depending upon the nature and length of the working relationship we have with you. We will use the data we hold to:</p>\r\n\r\n<ul>\r\n <li>manage customer service</li>\r\n <li>inform you of projects we are involved in which might be of interest to you</li>\r\n <li>fulfil contractual obligations between you, us and designated third parties.</li>\r\n</ul>\r\n<h5 style=\"font-weight: 400;\"><strong>How long will we hold your information for?</strong></h5>\r\n<p style=\"font-weight: 400;\">We will ensure that your information is held for as long as it is required, and no longer. This will be reviewed annually, every May. Any information retained which is no longer relevant to our business function and relationship with you will be disposed of in a safe and secure manner.</p>\r\n\r\n<h5 style=\"font-weight: 400;\"><strong>Protecting your data</strong></h5>\r\n<p style=\"font-weight: 400;\">RAW Energy Ltd has stringent security measures in place to ensure information is not shared internally or externally with parties who do not require access to it. Our staff only have access to information relevant to their specific roles within the organisation.</p>\r\n\r\n<h5 style=\"font-weight: 400;\"><strong>Can I access the information held about me?</strong></h5>\r\n<p style=\"font-weight: 400;\">You have the right to request details of all the information we hold about you. Please write to or email us:</p>\r\n<p style=\"font-weight: 400;\">RAW Energy Ltd</p>\r\n<p style=\"font-weight: 400;\">Trent Lodge</p>\r\n<p style=\"font-weight: 400;\">Stroud Road</p>\r\n<p style=\"font-weight: 400;\">Cirencester</p>\r\n<p style=\"font-weight: 400;\">GL7 6JN</p>\r\n<p style=\"font-weight: 400;\">Email – <a href=\"mailto:info@rawergy.co.uk\">info@rawergy.co.uk</a></p>\r\n\r\n<h5 style=\"font-weight: 400;\"><strong>Disclosing your data</strong></h5>\r\n<span style=\"font-weight: 400;\">We will never share your information for marketing purposes. However, we may share your details with third parties relevant to particular projects that you, and we, are involved in. For example, local authorities, our legal representatives, other professional service providers. We will only provide these third parties with information they need to deliver the service we have engaged them in. We may also share your information if legally instructed to by courts, police of other law enforcement agencies. </span>\r\n\r\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2023-05-23 10:42:33','2023-05-23 09:42:33','',3,'http://localhost:8888/raw-energy/?p=184',0,'revision','',0),(185,1,'2023-05-23 15:12:29','2023-05-23 14:12:29','a:7:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','Custom Link','custom_link','publish','closed','closed','','field_646cc99c4199e','','','2023-05-23 15:12:29','2023-05-23 14:12:29','',79,'http://localhost:8888/raw-energy/?post_type=acf-field&p=185',1,'acf-field','',0),(188,4,'2023-05-31 14:14:48','2023-05-31 13:14:48','Anaerobic Digestion','Charlton park','Anaerobic Digestion','inherit','open','closed','','charlton-park','','','2023-05-31 15:02:52','2023-05-31 14:02:52','',14,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/Charlton-park.jpg',0,'attachment','image/jpeg',0),(189,4,'2023-05-31 14:14:51','2023-05-31 13:14:51','Environmental, Social and Governance (ESG) ','Environmental, Social and Governance (ESG)','Environmental, Social and Governance (ESG) ','inherit','open','closed','','img_7945','','','2023-05-31 15:16:38','2023-05-31 14:16:38','',14,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/IMG_7945.jpg',0,'attachment','image/jpeg',0),(190,4,'2023-05-31 14:14:53','2023-05-31 13:14:53','','Commercial Solar & battery storage','','inherit','open','closed','','screenshot-2023-05-04-at-08-20-15','','','2023-05-31 14:18:21','2023-05-31 13:18:21','',14,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/Screenshot-2023-05-04-at-08.20.15.jpg',0,'attachment','image/jpeg',0),(191,4,'2023-05-31 14:14:54','2023-05-31 13:14:54','','Screenshot 2023-05-04 at 09.14.22','','inherit','open','closed','','screenshot-2023-05-04-at-09-14-22','','','2023-05-31 14:14:54','2023-05-31 13:14:54','',14,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/Screenshot-2023-05-04-at-09.14.22.jpg',0,'attachment','image/jpeg',0),(192,4,'2023-05-31 14:14:57','2023-05-31 13:14:57','','Large Scale Solar','Large Scale Solar','inherit','open','closed','','shutterstock_178694141-2','','','2023-05-31 14:37:20','2023-05-31 13:37:20','',14,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/shutterstock_178694141.jpg',0,'attachment','image/jpeg',0),(193,4,'2023-05-31 14:14:59','2023-05-31 13:14:59','','Domestic & Commercial Insulation','Domestic & Commercial Insulation ','inherit','open','closed','','shutterstock_203363170','','','2023-05-31 14:20:32','2023-05-31 13:20:32','',14,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/shutterstock_203363170.jpg',0,'attachment','image/jpeg',0),(194,4,'2023-05-31 14:15:01','2023-05-31 13:15:01','','shutterstock_1786827122','','inherit','open','closed','','shutterstock_1786827122','','','2023-05-31 14:15:01','2023-05-31 13:15:01','',14,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/shutterstock_1786827122.jpg',0,'attachment','image/jpeg',0),(195,4,'2023-05-31 14:15:04','2023-05-31 13:15:04','','shutterstock_2041875230','','inherit','open','closed','','shutterstock_2041875230','','','2023-05-31 14:15:04','2023-05-31 13:15:04','',14,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/shutterstock_2041875230.jpg',0,'attachment','image/jpeg',0),(196,4,'2023-05-31 14:15:07','2023-05-31 13:15:07','','shutterstock_2152310017','','inherit','open','closed','','shutterstock_2152310017','','','2023-05-31 14:15:07','2023-05-31 13:15:07','',14,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/shutterstock_2152310017.jpg',0,'attachment','image/jpeg',0),(197,1,'2023-05-31 14:25:26','2023-05-31 13:25:26','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Hero','hero','publish','closed','closed','','field_64774aaa50bf0','','','2023-05-31 14:25:26','2023-05-31 13:25:26','',41,'http://newsite.rawenergy.co.uk/?post_type=acf-field&p=197',0,'acf-field','',0),(198,1,'2023-05-31 14:25:26','2023-05-31 13:25:26','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:4;s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Subtitle','hero_subtitle','publish','closed','closed','','field_64774ab450bf1','','','2023-05-31 14:25:26','2023-05-31 13:25:26','',41,'http://newsite.rawenergy.co.uk/?post_type=acf-field&p=198',1,'acf-field','',0),(200,4,'2023-05-31 14:48:06','2023-05-31 13:48:06','','Energy Consultancy','Energy Consultancy','inherit','open','closed','','shutterstock_2133752289','','','2023-05-31 14:48:13','2023-05-31 13:48:13','',27,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/shutterstock_2133752289.jpg',0,'attachment','image/jpeg',0),(201,4,'2023-05-31 14:50:35','2023-05-31 13:50:35','','IMG_2251','','inherit','open','closed','','img_2251','','','2023-05-31 14:50:35','2023-05-31 13:50:35','',35,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/IMG_2251.jpg',0,'attachment','image/jpeg',0),(202,4,'2023-05-31 14:50:42','2023-05-31 13:50:42','','stock-photo-engineer-working-in-office-at-desk-with-solar-laptop-and-concept-home-design-solar-renewable-energy-2290717413','','inherit','open','closed','','stock-photo-engineer-working-in-office-at-desk-with-solar-laptop-and-concept-home-design-solar-renewable-energy-2290717413','','','2023-05-31 14:50:42','2023-05-31 13:50:42','',35,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/stock-photo-engineer-working-in-office-at-desk-with-solar-laptop-and-concept-home-design-solar-renewable-energy-2290717413.jpg',0,'attachment','image/jpeg',0),(203,4,'2023-05-31 14:50:53','2023-05-31 13:50:53','','IMG_2251','','inherit','open','closed','','img_2251-2','','','2023-05-31 14:50:53','2023-05-31 13:50:53','',35,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/IMG_2251-1.jpg',0,'attachment','image/jpeg',0),(204,1,'2023-05-31 14:57:56','2023-05-31 13:57:56','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Copy Title','importance_copy_title','publish','closed','closed','','field_647752539dc40','','','2023-05-31 14:57:56','2023-05-31 13:57:56','',41,'http://newsite.rawenergy.co.uk/?post_type=acf-field&p=204',5,'acf-field','',0),(205,4,'2023-05-31 14:59:07','2023-05-31 13:59:07','','Asset Management','Asset Management','inherit','open','closed','','shutterstock_1931317961','','','2023-05-31 14:59:13','2023-05-31 13:59:13','',30,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/shutterstock_1931317961.jpg',0,'attachment','image/jpeg',0),(206,4,'2023-05-31 15:11:09','2023-05-31 14:11:09','Providing the infrastructure to facilitate the strong and consistent growth in electric vehicles.','Electric Vehicle Charging','Providing the infrastructure to facilitate the strong and consistent growth in electric vehicles.','inherit','open','closed','','shutterstock_1621282165','','','2023-05-31 15:11:28','2023-05-31 14:11:28','',33,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/shutterstock_1621282165.jpg',0,'attachment','image/jpeg',0),(207,1,'2023-05-31 15:23:24','2023-05-31 14:23:24','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','FAQs','faqs','publish','closed','closed','','field_6477581505ac6','','','2023-05-31 15:23:24','2023-05-31 14:23:24','',41,'http://newsite.rawenergy.co.uk/?post_type=acf-field&p=207',12,'acf-field','',0),(208,1,'2023-05-31 15:23:24','2023-05-31 14:23:24','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','FAQs','faqs','publish','closed','closed','','field_6477581d05ac7','','','2023-05-31 15:23:24','2023-05-31 14:23:24','',41,'http://newsite.rawenergy.co.uk/?post_type=acf-field&p=208',13,'acf-field','',0),(209,1,'2023-05-31 15:23:24','2023-05-31 14:23:24','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Title','faq_title','publish','closed','closed','','field_6477582205ac8','','','2023-05-31 15:23:24','2023-05-31 14:23:24','',208,'http://newsite.rawenergy.co.uk/?post_type=acf-field&p=209',0,'acf-field','',0),(210,1,'2023-05-31 15:23:24','2023-05-31 14:23:24','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Copy','faq_copy','publish','closed','closed','','field_6477582905ac9','','','2023-05-31 15:23:24','2023-05-31 14:23:24','',208,'http://newsite.rawenergy.co.uk/?post_type=acf-field&p=210',1,'acf-field','',0),(211,1,'2023-05-31 16:20:20','2023-05-31 15:20:20','','About','','inherit','closed','closed','','8-revision-v1','','','2023-05-31 16:20:20','2023-05-31 15:20:20','',8,'http://newsite.rawenergy.co.uk/?p=211',0,'revision','',0),(212,1,'2023-05-31 16:25:47','2023-05-31 15:25:47','','Home','','inherit','closed','closed','','6-revision-v1','','','2023-05-31 16:25:47','2023-05-31 15:25:47','',6,'http://newsite.rawenergy.co.uk/?p=212',0,'revision','',0),(213,1,'2023-05-31 16:31:13','2023-05-31 15:31:13','','Home','','inherit','closed','closed','','6-revision-v1','','','2023-05-31 16:31:13','2023-05-31 15:31:13','',6,'http://newsite.rawenergy.co.uk/?p=213',0,'revision','',0),(214,1,'2023-05-31 16:31:22','2023-05-31 15:31:22','{{unknown}}','','','publish','closed','closed','','ffeae04fd6bf2be76e9eb5c46a34c82e','','','2023-05-31 16:31:22','2023-05-31 15:31:22','',0,'http://newsite.rawenergy.co.uk/ffeae04fd6bf2be76e9eb5c46a34c82e/',0,'oembed_cache','',0),(215,1,'2023-05-31 16:35:41','2023-05-31 15:35:41','','Home','','inherit','closed','closed','','6-revision-v1','','','2023-05-31 16:35:41','2023-05-31 15:35:41','',6,'http://newsite.rawenergy.co.uk/?p=215',0,'revision','',0),(216,4,'2023-06-01 07:57:26','2023-06-01 06:57:26','','Team - Bob_','','inherit','open','closed','','team-bob_','','','2023-06-01 07:57:26','2023-06-01 06:57:26','',10,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/Team-Bob_.jpg',0,'attachment','image/jpeg',0),(217,4,'2023-06-01 07:57:29','2023-06-01 06:57:29','','Team - Felix_','','inherit','open','closed','','team-felix_','','','2023-06-01 07:57:29','2023-06-01 06:57:29','',10,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/Team-Felix_.jpg',0,'attachment','image/jpeg',0),(218,4,'2023-06-01 07:57:31','2023-06-01 06:57:31','','Team - Harry_','','inherit','open','closed','','team-harry_','','','2023-06-01 07:57:31','2023-06-01 06:57:31','',10,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/Team-Harry_.jpg',0,'attachment','image/jpeg',0),(219,4,'2023-06-01 07:57:32','2023-06-01 06:57:32','','Team - HBK','','inherit','open','closed','','team-hbk','','','2023-06-01 07:57:32','2023-06-01 06:57:32','',10,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/Team-HBK.jpg',0,'attachment','image/jpeg',0),(220,4,'2023-06-01 07:57:34','2023-06-01 06:57:34','','Team - Sam TBC','','inherit','open','closed','','team-sam-tbc','','','2023-06-01 07:57:34','2023-06-01 06:57:34','',10,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/Team-Sam-TBC.jpg',0,'attachment','image/jpeg',0),(221,4,'2023-06-01 07:57:36','2023-06-01 06:57:36','','Team - Tim_','','inherit','open','closed','','team-tim_','','','2023-06-01 07:57:36','2023-06-01 06:57:36','',10,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/Team-Tim_.jpg',0,'attachment','image/jpeg',0),(222,4,'2023-06-01 07:57:38','2023-06-01 06:57:38','','Team - Zac','','inherit','open','closed','','team-zac','','','2023-06-01 07:57:38','2023-06-01 06:57:38','',10,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/Team-Zac.jpg',0,'attachment','image/jpeg',0),(223,4,'2023-06-01 07:57:40','2023-06-01 06:57:40','','Team-Stu','','inherit','open','closed','','team-stu','','','2023-06-01 07:58:03','2023-06-01 06:58:03','',10,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/Team-Stu.jpg',0,'attachment','image/jpeg',0),(224,4,'2023-06-01 07:57:42','2023-06-01 06:57:42','','Teanm - Will','','inherit','open','closed','','teanm-will','','','2023-06-01 07:57:42','2023-06-01 06:57:42','',10,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/Teanm-Will.jpg',0,'attachment','image/jpeg',0),(225,4,'2023-06-01 08:03:43','2023-06-01 07:03:43','','Team','','inherit','closed','closed','','10-revision-v1','','','2023-06-01 08:03:43','2023-06-01 07:03:43','',10,'http://newsite.rawenergy.co.uk/?p=225',0,'revision','',0),(226,4,'2023-06-01 08:05:01','2023-06-01 07:05:01','','Solar Home','','inherit','open','closed','','shutterstock_2257492191','','','2023-06-01 08:05:29','2023-06-01 07:05:29','',8,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/shutterstock_2257492191.jpg',0,'attachment','image/jpeg',0),(227,4,'2023-06-01 08:05:19','2023-06-01 07:05:19','','Solar commercial','','inherit','open','closed','','shutterstock_1629158851','','','2023-06-01 08:05:46','2023-06-01 07:05:46','',8,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/shutterstock_1629158851.jpg',0,'attachment','image/jpeg',0),(228,4,'2023-06-01 08:05:20','2023-06-01 07:05:20','','Megawatt Scale','','inherit','open','closed','','shutterstock_290162582','','','2023-06-01 08:06:02','2023-06-01 07:06:02','',8,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/shutterstock_290162582.jpg',0,'attachment','image/jpeg',0),(229,4,'2023-06-01 08:06:07','2023-06-01 07:06:07','','About','','inherit','closed','closed','','8-revision-v1','','','2023-06-01 08:06:07','2023-06-01 07:06:07','',8,'http://newsite.rawenergy.co.uk/?p=229',0,'revision','',0),(230,4,'2023-06-01 08:06:53','2023-06-01 07:06:53','','Raw Energy. Renewable energy with integrity since 2012.','','inherit','open','closed','','shutterstock_1572926665','','','2023-06-01 08:07:00','2023-06-01 07:07:00','',8,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/shutterstock_1572926665.jpg',0,'attachment','image/jpeg',0),(231,4,'2023-06-01 08:07:05','2023-06-01 07:07:05','','About','','inherit','closed','closed','','8-revision-v1','','','2023-06-01 08:07:05','2023-06-01 07:07:05','',8,'http://newsite.rawenergy.co.uk/?p=231',0,'revision','',0),(232,4,'2023-06-01 08:13:06','2023-06-01 07:13:06','','Home','','inherit','closed','closed','','6-revision-v1','','','2023-06-01 08:13:06','2023-06-01 07:13:06','',6,'http://newsite.rawenergy.co.uk/?p=232',0,'revision','',0),(233,4,'2023-06-01 08:13:30','2023-06-01 07:13:30','','Home','','inherit','closed','closed','','6-revision-v1','','','2023-06-01 08:13:30','2023-06-01 07:13:30','',6,'http://newsite.rawenergy.co.uk/?p=233',0,'revision','',0),(234,4,'2023-06-05 08:18:36','2023-06-05 07:18:36','','Team','','inherit','closed','closed','','10-revision-v1','','','2023-06-05 08:18:36','2023-06-05 07:18:36','',10,'http://newsite.rawenergy.co.uk/?p=234',0,'revision','',0),(235,3,'2023-06-06 14:35:53','2023-06-06 13:35:53','','Team','','inherit','closed','closed','','10-revision-v1','','','2023-06-06 14:35:53','2023-06-06 13:35:53','',10,'http://newsite.rawenergy.co.uk/?p=235',0,'revision','',0),(236,4,'2023-06-06 15:11:01','2023-06-06 14:11:01','','Screenshot 2023-06-06 at 15.10.43','','inherit','open','closed','','screenshot-2023-06-06-at-15-10-43','','','2023-06-06 15:11:01','2023-06-06 14:11:01','',38,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/Screenshot-2023-06-06-at-15.10.43.png',0,'attachment','image/png',0),(237,4,'2023-06-06 15:11:07','2023-06-06 14:11:07','<!-- wp:paragraph -->\n<p>We focus on offering our customers excellent value for money and proving tangible benefits</p>\n<!-- /wp:paragraph -->','Biomethane Injection','','inherit','closed','closed','','38-autosave-v1','','','2023-06-06 15:11:07','2023-06-06 14:11:07','',38,'http://newsite.rawenergy.co.uk/?p=237',0,'revision','',0),(238,4,'2023-06-06 15:12:55','2023-06-06 14:12:55','','Screenshot 2023-06-06 at 15.12.34','','inherit','open','closed','','screenshot-2023-06-06-at-15-12-34','','','2023-06-06 15:12:55','2023-06-06 14:12:55','',40,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/Screenshot-2023-06-06-at-15.12.34.png',0,'attachment','image/png',0),(239,4,'2023-06-06 15:13:58','2023-06-06 14:13:58','','Screenshot 2023-06-06 at 15.12.34','','inherit','open','closed','','screenshot-2023-06-06-at-15-12-34-2','','','2023-06-06 15:13:58','2023-06-06 14:13:58','',39,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/Screenshot-2023-06-06-at-15.12.34-1.png',0,'attachment','image/png',0),(240,4,'2023-06-06 15:14:21','2023-06-06 14:14:21','','Commercial Rooftop Solar PV','','inherit','closed','closed','','39-autosave-v1','','','2023-06-06 15:14:21','2023-06-06 14:14:21','',39,'http://newsite.rawenergy.co.uk/?p=240',0,'revision','',0),(241,4,'2023-06-06 15:14:28','2023-06-06 14:14:28','','Screenshot 2023-06-06 at 15.13.45','','inherit','open','closed','','screenshot-2023-06-06-at-15-13-45','','','2023-06-06 15:14:28','2023-06-06 14:14:28','',39,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/05/Screenshot-2023-06-06-at-15.13.45.png',0,'attachment','image/png',0),(242,4,'2023-06-06 15:17:03','2023-06-06 14:17:03','','missing-profile-picture-1.jpg','','inherit','open','closed','','missing-profile-picture-1-jpg','','','2023-06-06 15:17:03','2023-06-06 14:17:03','',10,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/missing-profile-picture-1.jpg.webp',0,'attachment','image/webp',0),(243,4,'2023-06-06 15:17:23','2023-06-06 14:17:23','','Team','','inherit','closed','closed','','10-revision-v1','','','2023-06-06 15:17:23','2023-06-06 14:17:23','',10,'http://newsite.rawenergy.co.uk/?p=243',0,'revision','',0),(244,1,'2023-06-07 08:43:32','2023-06-07 07:43:32','a:16:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:12:\"preview_size\";s:6:\"medium\";}','Approved Contractor','approved_contractor','publish','closed','closed','','field_64803518d8903','','','2023-06-07 08:43:32','2023-06-07 07:43:32','',54,'http://newsite.rawenergy.co.uk/?post_type=acf-field&p=244',9,'acf-field','',0),(245,1,'2023-06-07 08:43:40','2023-06-07 07:43:40','','345119905_216613924518006_337061852609538107_n','','inherit','open','closed','','345119905_216613924518006_337061852609538107_n','','','2023-06-07 08:43:40','2023-06-07 07:43:40','',0,'http://newsite.rawenergy.co.uk/wp-content/uploads/2023/06/345119905_216613924518006_337061852609538107_n.png',0,'attachment','image/png',0),(250,3,'2023-07-10 08:55:37','2023-07-10 07:55:37','','Home','','inherit','closed','closed','','6-revision-v1','','','2023-07-10 08:55:37','2023-07-10 07:55:37','',6,'https://rawenergy.co.uk/oldbackup/?p=250',0,'revision','',0),(251,3,'2023-07-10 11:30:00','2023-07-10 10:30:00','','Charlton Park Biogas','','publish','closed','closed','','charlton-park-biogas','','','2023-07-10 12:07:57','2023-07-10 11:07:57','',0,'https://rawenergy.co.uk/oldbackup/?post_type=projects&p=251',3,'projects','',0),(252,3,'2023-07-10 12:07:30','2023-07-10 11:07:30','','Page 1 - CPBL 220426','','inherit','open','closed','','page-1-cpbl-220426','','','2023-07-10 12:07:30','2023-07-10 11:07:30','',251,'https://rawenergy.co.uk/oldbackup/wp-content/uploads/2023/07/Page-1-CPBL-220426.jpg',0,'attachment','image/jpeg',0),(253,3,'2023-07-10 12:32:16','2023-07-10 11:32:16','','Commerical solar for home page banner','','inherit','open','closed','','commerical-solar-for-home-page-banner','','','2023-07-10 12:32:16','2023-07-10 11:32:16','',39,'https://rawenergy.co.uk/oldbackup/wp-content/uploads/2023/05/Commerical-solar-for-home-page-banner.jpg',0,'attachment','image/jpeg',0),(254,3,'2023-07-10 12:50:03','2023-07-10 11:50:03','','Home solar','','publish','closed','closed','','home-solar','','','2023-07-10 12:50:03','2023-07-10 11:50:03','',0,'https://rawenergy.co.uk/oldbackup/?post_type=projects&p=254',2,'projects','',0),(255,3,'2023-07-10 12:48:01','2023-07-10 11:48:01','','35 Saxon Close','','inherit','open','closed','','35-saxon-close','','','2023-07-10 12:48:01','2023-07-10 11:48:01','',254,'https://rawenergy.co.uk/oldbackup/wp-content/uploads/2023/07/35-Saxon-Close.jpg',0,'attachment','image/jpeg',0),(256,3,'2023-07-10 12:57:43','0000-00-00 00:00:00','','Anaerobic Digestion Asset Management','','draft','closed','closed','','','','','2023-07-10 12:57:43','2023-07-10 11:57:43','',0,'https://rawenergy.co.uk/oldbackup/?post_type=projects&p=256',1,'projects','',0),(257,3,'2023-07-10 13:05:07','2023-07-10 12:05:07','','Team','','inherit','closed','closed','','10-revision-v1','','','2023-07-10 13:05:07','2023-07-10 12:05:07','',10,'https://rawenergy.co.uk/oldbackup/?p=257',0,'revision','',0),(258,3,'2023-07-10 14:12:24','2023-07-10 13:12:24','','Team','','inherit','closed','closed','','10-revision-v1','','','2023-07-10 14:12:24','2023-07-10 13:12:24','',10,'https://rawenergy.co.uk/oldbackup/?p=258',0,'revision','',0),(259,3,'2023-07-10 16:19:42','2023-07-10 15:19:42','','About','','inherit','closed','closed','','8-revision-v1','','','2023-07-10 16:19:42','2023-07-10 15:19:42','',8,'https://rawenergy.co.uk/oldbackup/?p=259',0,'revision','',0),(261,4,'2023-07-14 08:21:36','2023-07-14 07:21:36','','Commerical-solar-for-home-page-banner','','inherit','open','closed','','commerical-solar-for-home-page-banner-2','','','2023-07-14 08:21:36','2023-07-14 07:21:36','',6,'https://rawenergy.co.uk/oldbackup/wp-content/uploads/2023/07/Commerical-solar-for-home-page-banner.png',0,'attachment','image/png',0),(262,4,'2023-07-14 08:22:12','2023-07-14 07:22:12','','Home','','inherit','closed','closed','','6-revision-v1','','','2023-07-14 08:22:12','2023-07-14 07:22:12','',6,'https://rawenergy.co.uk/oldbackup/?p=262',0,'revision','',0),(263,4,'2023-07-14 08:35:35','2023-07-14 07:35:35','','IMG_1992','','inherit','open','closed','','img_1992','','','2023-07-14 08:35:35','2023-07-14 07:35:35','',34,'https://rawenergy.co.uk/oldbackup/wp-content/uploads/2023/05/IMG_1992.jpg',0,'attachment','image/jpeg',0),(264,4,'2023-07-14 08:35:40','2023-07-14 07:35:40','','image','','inherit','open','closed','','image','','','2023-07-14 08:35:40','2023-07-14 07:35:40','',34,'https://rawenergy.co.uk/oldbackup/wp-content/uploads/2023/05/image.jpeg',0,'attachment','image/jpeg',0),(265,4,'2023-07-14 08:37:07','2023-07-14 07:37:07','','About','','inherit','closed','closed','','8-revision-v1','','','2023-07-14 08:37:07','2023-07-14 07:37:07','',8,'https://rawenergy.co.uk/oldbackup/?p=265',0,'revision','',0),(267,1,'2023-07-14 12:32:16','2023-07-14 11:32:16','a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Projects','projects','publish','closed','closed','','field_64b13205c416f','','','2023-07-14 12:32:16','2023-07-14 11:32:16','',54,'https://rawenergy.co.uk/oldbackup/?post_type=acf-field&p=267',10,'acf-field','',0),(268,1,'2023-07-14 12:32:16','2023-07-14 11:32:16','a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Projects Lead','projects_lead','publish','closed','closed','','field_64b13218c4170','','','2023-07-14 12:32:16','2023-07-14 11:32:16','',54,'https://rawenergy.co.uk/oldbackup/?post_type=acf-field&p=268',11,'acf-field','',0),(269,1,'2023-08-17 11:43:12','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-08-17 11:43:12','0000-00-00 00:00:00','',0,'https://rawenergy.co.uk/oldbackup/?p=269',0,'post','',0),(270,4,'2023-08-17 15:36:56','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-08-17 15:36:56','0000-00-00 00:00:00','',0,'https://rawenergy.co.uk/oldbackup/?p=270',0,'post','',0),(271,4,'2023-08-17 15:41:23','2023-08-17 14:41:23','','Bullet point icon','','inherit','open','closed','','bullet-point-icon','','','2023-08-17 15:41:23','2023-08-17 14:41:23','',0,'https://rawenergy.co.uk/oldbackup/wp-content/uploads/2023/08/Bullet-point-icon.jpg',0,'attachment','image/jpeg',0),(272,4,'2023-08-17 15:41:44','2023-08-17 14:41:44','','RAW icon PNG','','inherit','open','closed','','raw-icon-png','','','2023-08-17 15:41:44','2023-08-17 14:41:44','',0,'https://rawenergy.co.uk/oldbackup/wp-content/uploads/2023/08/RAW-icon-PNG.png',0,'attachment','image/png',0),(273,4,'2023-08-17 15:41:51','2023-08-17 14:41:51','https://rawenergy.co.uk/oldbackup/wp-content/uploads/2023/08/cropped-RAW-icon-PNG.png','cropped-RAW-icon-PNG.png','','inherit','open','closed','','cropped-raw-icon-png-png','','','2023-08-17 15:41:51','2023-08-17 14:41:51','',0,'https://rawenergy.co.uk/oldbackup/wp-content/uploads/2023/08/cropped-RAW-icon-PNG.png',0,'attachment','image/png',0),(274,4,'2023-08-17 15:41:57','2023-08-17 14:41:57','{\n \"site_icon\": {\n \"value\": 273,\n \"type\": \"option\",\n \"user_id\": 2,\n \"date_modified_gmt\": \"2023-08-17 14:41:57\"\n }\n}','','','trash','closed','closed','','47495113-4d18-4320-b9ad-392aa28d5e8e','','','2023-08-17 15:41:57','2023-08-17 14:41:57','',0,'https://rawenergy.co.uk/oldbackup/47495113-4d18-4320-b9ad-392aa28d5e8e/',0,'customize_changeset','',0),(275,4,'2023-08-21 11:12:42','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-08-21 11:12:42','0000-00-00 00:00:00','',0,'https://rawenergy.co.uk/oldbackup/?p=275',0,'post','',0),(276,4,'2023-08-21 18:16:14','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-08-21 18:16:14','0000-00-00 00:00:00','',0,'https://rawenergy.co.uk/oldbackup/?p=276',0,'post','',0),(277,4,'2023-08-21 18:16:32','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-08-21 18:16:32','0000-00-00 00:00:00','',0,'https://rawenergy.co.uk/oldbackup/?p=277',0,'post','',0);
/*!40000 ALTER TABLE `wpdh_posts` ENABLE KEYS */;
--
-- Table structure for table `wpdh_term_relationships`
--
DROP TABLE IF EXISTS `wpdh_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_term_relationships`
--
/*!40000 ALTER TABLE `wpdh_term_relationships` DISABLE KEYS */;
INSERT INTO `wpdh_term_relationships` VALUES (1,1,0),(21,2,0),(23,2,0),(24,2,0),(158,3,0),(159,3,0),(160,3,0),(161,3,0),(162,3,0),(163,3,0),(164,3,0),(165,3,0),(166,3,0),(167,3,0),(168,3,0),(169,3,0),(170,2,0),(171,2,0),(172,4,0),(173,4,0),(174,4,0),(175,4,0),(176,4,0),(180,5,0),(181,5,0);
/*!40000 ALTER TABLE `wpdh_term_relationships` ENABLE KEYS */;
--
-- Table structure for table `wpdh_term_taxonomy`
--
DROP TABLE IF EXISTS `wpdh_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_term_taxonomy`
--
/*!40000 ALTER TABLE `wpdh_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpdh_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,5),(3,3,'nav_menu','',0,12),(4,4,'nav_menu','',0,5),(5,5,'nav_menu','',0,2);
/*!40000 ALTER TABLE `wpdh_term_taxonomy` ENABLE KEYS */;
--
-- Table structure for table `wpdh_termmeta`
--
DROP TABLE IF EXISTS `wpdh_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_termmeta`
--
/*!40000 ALTER TABLE `wpdh_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpdh_termmeta` ENABLE KEYS */;
--
-- Table structure for table `wpdh_terms`
--
DROP TABLE IF EXISTS `wpdh_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0,
`term_order` int(4) DEFAULT 0,
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) 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 `wpdh_terms`
--
/*!40000 ALTER TABLE `wpdh_terms` DISABLE KEYS */;
INSERT INTO `wpdh_terms` VALUES (1,'Uncategorised','uncategorised',0,0),(2,'Primary','primary',0,0),(3,'Footer Services','footer-services',0,0),(4,'Footer Menu','footer-menu',0,0),(5,'Footer Data Menu','footer-data-menu',0,0);
/*!40000 ALTER TABLE `wpdh_terms` ENABLE KEYS */;
--
-- Table structure for table `wpdh_usermeta`
--
DROP TABLE IF EXISTS `wpdh_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=92 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_usermeta`
--
/*!40000 ALTER TABLE `wpdh_usermeta` DISABLE KEYS */;
INSERT INTO `wpdh_usermeta` VALUES (1,1,'nickname','matth'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpdh_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpdh_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice'),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:1:{s:64:\"5b13524aba73aff452726ea64ac3347fd2f5571b5a44ee73ccf46878e2dea9f2\";a:4:{s:10:\"expiration\";i:1692441792;s:2:\"ip\";s:38:\"2a02:c7c:b604:e800:fd8b:2911:a8db:89c3\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Safari/605.1.15\";s:5:\"login\";i:1692268992;}}'),(17,1,'wpdh_dashboard_quick_press_last_post_id','269'),(18,1,'odp_cfs_shield_notice','1684763552'),(19,1,'wpdh_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:14:\"featured-image\";}}s:9:\"_modified\";s:24:\"2023-05-18T13:22:20.001Z\";}'),(20,1,'wpdh_user-settings','libraryContent=browse&editor=tinymce'),(21,1,'wpdh_user-settings-time','1684763430'),(22,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(23,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(24,1,'nav_menu_recently_edited','2'),(25,1,'closedpostboxes_nav-menus','a:0:{}'),(26,1,'gform_recent_forms','a:2:{i:0;s:1:\"2\";i:1;s:1:\"1\";}'),(27,1,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2a02:c7c:b604:e800::\";}'),(49,3,'nickname','TeamRaw'),(50,3,'first_name',''),(51,3,'last_name',''),(52,3,'description',''),(53,3,'rich_editing','true'),(54,3,'syntax_highlighting','true'),(55,3,'comment_shortcuts','false'),(56,3,'admin_color','fresh'),(57,3,'use_ssl','0'),(58,3,'show_admin_bar_front','true'),(59,3,'locale',''),(60,3,'wpdh_capabilities','a:1:{s:6:\"editor\";b:1;}'),(61,3,'wpdh_user_level','7'),(62,3,'dismissed_wp_pointers',''),(63,3,'session_tokens','a:2:{s:64:\"d41624d68785eb97a5df7e08d811be8c47a679c8935c0e8b1ab48560e16e95bc\";a:4:{s:10:\"expiration\";i:1690533213;s:2:\"ip\";s:39:\"2a00:23c7:a312:ab01:155d:2673:f9c4:3baa\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\";s:5:\"login\";i:1689323613;}s:64:\"9558efb4227b5e4e9024de1fac860f5aa28f3ef6c99fc69263676238e299dc3e\";a:4:{s:10:\"expiration\";i:1690472001;s:2:\"ip\";s:14:\"194.80.134.138\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\";s:5:\"login\";i:1690299201;}}'),(64,3,'wpdh_user-settings','libraryContent=browse'),(65,3,'wpdh_user-settings-time','1686058798'),(66,3,'wpdh_dashboard_quick_press_last_post_id','249'),(67,3,'community-events-location','a:1:{s:2:\"ip\";s:21:\"2a00:23c7:a312:ab01::\";}'),(71,1,'closedpostboxes_projects','a:1:{i:0;s:23:\"acf-group_646bdab5d5ba0\";}'),(72,1,'metaboxhidden_projects','a:1:{i:0;s:7:\"slugdiv\";}'),(73,4,'nickname','RAWSEO'),(74,4,'first_name',''),(75,4,'last_name',''),(76,4,'description',''),(77,4,'rich_editing','true'),(78,4,'syntax_highlighting','true'),(79,4,'comment_shortcuts','false'),(80,4,'admin_color','fresh'),(81,4,'use_ssl','0'),(82,4,'show_admin_bar_front','true'),(83,4,'locale',''),(84,4,'wpdh_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(85,4,'wpdh_user_level','10'),(86,4,'dismissed_wp_pointers','theme_editor_notice'),(87,4,'session_tokens','a:3:{s:64:\"c415100924a7f5bb27149ca4fa4544da012fd4dc357ff323f8bee0f02f136c09\";a:4:{s:10:\"expiration\";i:1693822362;s:2:\"ip\";s:39:\"2a00:23c7:a36e:2201:109e:fcbb:61a3:560b\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1692612762;}s:64:\"1eb6cf7b8431e334927aa8e15b9c81c56f8e00575ec5d7592f39f6649a51387f\";a:4:{s:10:\"expiration\";i:1692799546;s:2:\"ip\";s:39:\"2a00:23c7:a36e:2201:dc82:ad72:9991:2862\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1692626746;}s:64:\"531d1fdfb7b7afcb052da610a24e4776da9bf614365b15adaebbff27e534bc98\";a:4:{s:10:\"expiration\";i:1693847061;s:2:\"ip\";s:13:\"109.153.87.12\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1692637461;}}'),(88,4,'odp_cfs_shield_notice','Y'),(89,4,'gform_recent_forms','a:2:{i:0;s:1:\"2\";i:1;s:1:\"1\";}'),(90,4,'wpdh_dashboard_quick_press_last_post_id','275'),(91,4,'community-events-location','a:1:{s:2:\"ip\";s:12:\"109.153.87.0\";}');
/*!40000 ALTER TABLE `wpdh_usermeta` ENABLE KEYS */;
--
-- Table structure for table `wpdh_users`
--
DROP TABLE IF EXISTS `wpdh_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(255) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wpdh_users`
--
/*!40000 ALTER TABLE `wpdh_users` DISABLE KEYS */;
INSERT INTO `wpdh_users` VALUES (1,'matth','$P$BpLiWf0jQyoua6N.g6vMpBbsuV/0fS.','matth','mholmes778@gmail.com','','2023-05-17 15:11:07','',0,'matth'),(3,'TeamRaw','$P$B9zPuk75rIaJnLNVBq68MbR.G6EM/Y0','teamraw','daisy@rawenergy.co.uk','','2023-06-01 07:21:17','1685604077:$P$BbSJcNU311GFJPvJP059X51Wxp8uWw0',0,'TeamRaw'),(4,'RAWSEO','$P$BNdgx7U7ah1KV2J/3UIPq/.r4qM.e5.','rawseo','harriet@rawenergy.co.uk','','2023-08-17 14:39:00','',0,'RAWSEO');
/*!40000 ALTER TABLE `wpdh_users` ENABLE KEYS */;
--
-- Table structure for table `wpdh_wpfm_backup`
--
DROP TABLE IF EXISTS `wpdh_wpfm_backup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdh_wpfm_backup` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`backup_name` text DEFAULT NULL,
`backup_date` 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 `wpdh_wpfm_backup`
--
/*!40000 ALTER TABLE `wpdh_wpfm_backup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpdh_wpfm_backup` ENABLE KEYS */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-07-06 1:31:37