/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.11.16-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: frequency1radio_wp528818
-- ------------------------------------------------------
-- Server version	10.11.16-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

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

--
-- Dumping data for table `wp_commentmeta`
--

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

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

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

--
-- Table structure for table `wp_csp3_subscribers`
--

DROP TABLE IF EXISTS `wp_csp3_subscribers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_csp3_subscribers` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `page_id` int(11) NOT NULL,
  `page_uuid` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `fname` varchar(255) DEFAULT NULL,
  `lname` varchar(255) DEFAULT NULL,
  `ref_url` varchar(255) DEFAULT NULL,
  `clicks` int(11) NOT NULL DEFAULT 0,
  `conversions` int(11) NOT NULL DEFAULT 0,
  `referrer` int(11) NOT NULL DEFAULT 0,
  `confirmed` int(11) NOT NULL DEFAULT 0,
  `optin_confirm` int(11) NOT NULL DEFAULT 0,
  `ip` varchar(255) DEFAULT NULL,
  `meta` text DEFAULT NULL,
  `created` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `csp3_subscribers_page_uuid_idx` (`page_uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_csp3_subscribers`
--

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

--
-- Table structure for table `wp_links`
--

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

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=19780 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES
(1,'cron','a:17:{i:1766815695;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:1766844341;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1766847923;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1766849723;a:1:{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;}}}i:1766851523;a:1:{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:1766864249;a:1:{s:28:\"seedprod_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1766886780;a:1:{s:22:\"seedprod_notifications\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1766887523;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1766887530;a:1:{s:29:\"wpo_smush_clear_backup_images\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1766887541;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: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:1766973180;a:1:{s:28:\"seedprod_pro_fetch_help_docs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1767146728;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1767146730;a:1:{s:21:\"wpo_weekly_cron_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1767233123;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:1768183530;a:1:{s:28:\"wpo_smush_clear_failed_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"wpo_monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}i:1772323200;a:1:{s:23:\"wpo_reset_stats_counter\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','on'),
(2,'siteurl','https://www.frequency1radio.com','on'),
(3,'home','https://www.frequency1radio.com','on'),
(4,'blogname','Your Blog Title','on'),
(5,'blogdescription','','on'),
(6,'users_can_register','0','on'),
(7,'admin_email','customerservice@frequency1radio.com','on'),
(8,'start_of_week','1','on'),
(9,'use_balanceTags','0','on'),
(10,'use_smilies','1','on'),
(11,'require_name_email','1','on'),
(12,'comments_notify','1','on'),
(13,'posts_per_rss','10','on'),
(14,'rss_use_excerpt','0','on'),
(15,'mailserver_url','mail.example.com','on'),
(16,'mailserver_login','login@example.com','on'),
(17,'mailserver_pass','','on'),
(18,'mailserver_port','110','on'),
(19,'default_category','1','on'),
(20,'default_comment_status','open','on'),
(21,'default_ping_status','open','on'),
(22,'default_pingback_flag','1','on'),
(23,'posts_per_page','10','on'),
(24,'date_format','F j, Y','on'),
(25,'time_format','g:i a','on'),
(26,'links_updated_date_format','F j, Y g:i a','on'),
(27,'comment_moderation','0','on'),
(28,'moderation_notify','1','on'),
(29,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','on'),
(30,'rewrite_rules','a:114:{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:\"seedprod/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"seedprod/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"seedprod/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"seedprod/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"seedprod/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"seedprod/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"seedprod/([^/]+)/embed/?$\";s:41:\"index.php?seedprod=$matches[1]&embed=true\";s:29:\"seedprod/([^/]+)/trackback/?$\";s:35:\"index.php?seedprod=$matches[1]&tb=1\";s:37:\"seedprod/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?seedprod=$matches[1]&paged=$matches[2]\";s:44:\"seedprod/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?seedprod=$matches[1]&cpage=$matches[2]\";s:33:\"seedprod/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?seedprod=$matches[1]&page=$matches[2]\";s:25:\"seedprod/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"seedprod/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"seedprod/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"seedprod/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"seedprod/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"seedprod/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:23:\"index.php?sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','on'),
(31,'hack_file','0','on'),
(32,'blog_charset','UTF-8','on'),
(33,'moderation_keys','','off'),
(34,'active_plugins','a:3:{i:0;s:33:\"qt-servercheck/qt-servercheck.php\";i:1;s:57:\"seedprod-coming-soon-pro-5/seedprod-coming-soon-pro-5.php\";i:2;s:27:\"wp-optimize/wp-optimize.php\";}','on'),
(35,'category_base','','on'),
(36,'ping_sites','https://rpc.pingomatic.com/','on'),
(37,'comment_max_links','2','on'),
(38,'gmt_offset','0','on'),
(39,'default_email_category','1','on'),
(40,'recently_edited','a:2:{i:0;s:74:\"/home/frequency1radio/public_html/wp-content/themes/onair2-child/style.css\";i:1;s:0:\"\";}','off'),
(41,'template','onair2','on'),
(42,'stylesheet','onair2','on'),
(43,'comment_registration','0','on'),
(44,'html_type','text/html','on'),
(45,'use_trackback','0','on'),
(46,'default_role','subscriber','on'),
(47,'db_version','60717','on'),
(48,'uploads_use_yearmonth_folders','1','on'),
(49,'upload_path','','on'),
(50,'blog_public','1','on'),
(51,'default_link_category','2','on'),
(52,'show_on_front','posts','on'),
(53,'tag_base','','on'),
(54,'show_avatars','1','on'),
(55,'avatar_rating','G','on'),
(56,'upload_url_path','','on'),
(57,'thumbnail_size_w','150','on'),
(58,'thumbnail_size_h','150','on'),
(59,'thumbnail_crop','1','on'),
(60,'medium_size_w','300','on'),
(61,'medium_size_h','300','on'),
(62,'avatar_default','mystery','on'),
(63,'large_size_w','1024','on'),
(64,'large_size_h','1024','on'),
(65,'image_default_link_type','none','on'),
(66,'image_default_size','','on'),
(67,'image_default_align','','on'),
(68,'close_comments_for_old_posts','0','on'),
(69,'close_comments_days_old','14','on'),
(70,'thread_comments','1','on'),
(71,'thread_comments_depth','5','on'),
(72,'page_comments','0','on'),
(73,'comments_per_page','50','on'),
(74,'default_comments_page','newest','on'),
(75,'comment_order','asc','on'),
(76,'sticky_posts','a:0:{}','on'),
(77,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),
(78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),
(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),
(80,'uninstall_plugins','a:1:{s:27:\"wp-optimize/wp-optimize.php\";a:2:{i:0;s:13:\"WPO_Uninstall\";i:1;s:7:\"actions\";}}','off'),
(81,'timezone_string','','on'),
(82,'page_for_posts','0','on'),
(83,'page_on_front','0','on'),
(84,'default_post_format','0','on'),
(85,'link_manager_enabled','0','on'),
(86,'finished_splitting_shared_terms','1','on'),
(87,'site_icon','0','on'),
(88,'medium_large_size_w','768','on'),
(89,'medium_large_size_h','0','on'),
(90,'wp_page_for_privacy_policy','3','on'),
(91,'show_comments_cookies_opt_in','1','on'),
(92,'admin_email_lifespan','1768183523','on'),
(93,'disallowed_keys','','off'),
(94,'comment_previously_approved','1','on'),
(95,'auto_plugin_theme_update_emails','a:0:{}','off'),
(96,'auto_update_core_dev','enabled','on'),
(97,'auto_update_core_minor','enabled','on'),
(98,'auto_update_core_major','enabled','on'),
(99,'wp_force_deactivated_plugins','a:0:{}','on'),
(100,'wp_attachment_pages_enabled','0','on'),
(101,'initial_db_version','58975','on'),
(102,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','on'),
(103,'fresh_site','1','off'),
(104,'user_count','1','off'),
(105,'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;}','auto'),
(106,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"right-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:13:\"footersidebar\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"popupwidgets\";a:0:{}s:13:\"array_version\";i:3;}','auto'),
(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(125,'theme_mods_twentytwentyfive','a:4:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1756043576;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"right-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:13:\"footersidebar\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"popupwidgets\";a:0:{}}}s:19:\"wp_classic_sidebars\";a:3:{s:13:\"right-sidebar\";a:11:{s:4:\"name\";s:13:\"Right Sidebar\";s:2:\"id\";s:13:\"right-sidebar\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:57:\"<aside id=\"%1$s\" class=\"qt-widget qt-content-aside %2$s\">\";s:12:\"after_widget\";s:8:\"</aside>\";s:12:\"before_title\";s:35:\"<h5 class=\"qt-caption-small\"><span>\";s:11:\"after_title\";s:12:\"</span></h5>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:13:\"footersidebar\";a:11:{s:4:\"name\";s:14:\"Footer Sidebar\";s:2:\"id\";s:13:\"footersidebar\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:55:\"<aside id=\"%1$s\" class=\"qt-widget col qt-ms-item %2$s\">\";s:12:\"after_widget\";s:8:\"</aside>\";s:12:\"before_title\";s:35:\"<h5 class=\"qt-caption-small\"><span>\";s:11:\"after_title\";s:11:\"<span></h5>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}s:12:\"popupwidgets\";a:11:{s:4:\"name\";s:13:\"Popup Widgets\";s:2:\"id\";s:12:\"popupwidgets\";s:11:\"description\";s:0:\"\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:55:\"<aside id=\"%1$s\" class=\"qt-widget col qt-ms-item %2$s\">\";s:12:\"after_widget\";s:8:\"</aside>\";s:12:\"before_title\";s:35:\"<h5 class=\"qt-caption-small\"><span>\";s:11:\"after_title\";s:12:\"</span></h5>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}}s:18:\"nav_menu_locations\";a:0:{}}','off'),
(127,'recovery_keys','a:0:{}','off'),
(134,'wp-optimize-installed-for','1752631529','auto'),
(136,'wp-optimize-schedule','false','auto'),
(137,'wp-optimize-last-optimized','Never','auto'),
(138,'wp-optimize-schedule-type','wpo_weekly','auto'),
(139,'wp-optimize-retention-enabled','false','auto'),
(140,'wp-optimize-retention-period','2','auto'),
(141,'wp-optimize-enable-admin-menu','false','auto'),
(142,'wp-optimize-total-cleaned','0','auto'),
(143,'wp-optimize-auto','a:8:{s:6:\"drafts\";s:4:\"true\";s:8:\"optimize\";s:5:\"false\";s:9:\"revisions\";s:4:\"true\";s:5:\"spams\";s:4:\"true\";s:9:\"transient\";s:5:\"false\";s:5:\"trash\";s:4:\"true\";s:10:\"unapproved\";s:5:\"false\";s:8:\"usermeta\";s:5:\"false\";}','auto'),
(144,'wp-optimize-settings','a:14:{s:11:\"user-drafts\";s:4:\"true\";s:16:\"user-commentmeta\";s:4:\"true\";s:13:\"user-optimize\";s:4:\"true\";s:15:\"user-orphandata\";s:4:\"true\";s:14:\"user-pingbacks\";s:4:\"true\";s:13:\"user-postmeta\";s:4:\"true\";s:14:\"user-revisions\";s:4:\"true\";s:10:\"user-spams\";s:4:\"true\";s:15:\"user-trackbacks\";s:4:\"true\";s:14:\"user-transient\";s:4:\"true\";s:10:\"user-trash\";s:4:\"true\";s:15:\"user-unapproved\";s:4:\"true\";s:13:\"user-usermeta\";s:4:\"true\";s:13:\"last_saved_in\";s:5:\"4.2.4\";}','auto'),
(145,'wpo_minify_config','a:59:{s:5:\"debug\";b:0;s:19:\"enabled_css_preload\";b:0;s:18:\"enabled_js_preload\";b:0;s:11:\"hpreconnect\";s:0:\"\";s:8:\"hpreload\";s:0:\"\";s:7:\"loadcss\";b:0;s:10:\"remove_css\";b:0;s:17:\"critical_path_css\";s:0:\"\";s:31:\"critical_path_css_is_front_page\";s:0:\"\";s:30:\"preserve_settings_on_uninstall\";b:1;s:22:\"disable_when_logged_in\";b:0;s:16:\"default_protocol\";s:7:\"dynamic\";s:17:\"html_minification\";b:1;s:16:\"clean_header_one\";b:0;s:13:\"emoji_removal\";b:1;s:18:\"merge_google_fonts\";b:1;s:19:\"enable_display_swap\";b:1;s:18:\"remove_googlefonts\";b:0;s:31:\"disable_google_fonts_processing\";b:0;s:13:\"gfonts_method\";s:7:\"inherit\";s:15:\"fawesome_method\";s:7:\"inherit\";s:10:\"enable_css\";b:1;s:23:\"enable_css_minification\";b:1;s:21:\"enable_merging_of_css\";b:1;s:23:\"remove_print_mediatypes\";b:0;s:10:\"inline_css\";b:0;s:9:\"enable_js\";b:1;s:22:\"enable_js_minification\";b:1;s:20:\"enable_merging_of_js\";b:1;s:15:\"enable_defer_js\";s:10:\"individual\";s:13:\"defer_js_type\";s:5:\"defer\";s:12:\"defer_jquery\";b:1;s:18:\"enable_js_trycatch\";b:0;s:19:\"exclude_defer_login\";b:1;s:7:\"cdn_url\";s:0:\"\";s:9:\"cdn_force\";b:0;s:15:\"enable_delay_js\";b:0;s:17:\"enable_preload_js\";b:0;s:16:\"exclude_delay_js\";s:0:\"\";s:9:\"async_css\";s:0:\"\";s:8:\"async_js\";s:0:\"\";s:24:\"disable_css_inline_merge\";b:1;s:6:\"ualist\";a:5:{i:0;s:9:\"Googlebot\";i:1;s:17:\"Chrome-Lighthouse\";i:2;s:8:\"GTmetrix\";i:3;s:14:\"HeadlessChrome\";i:4;s:7:\"Pingdom\";}s:32:\"exclude_js_from_page_speed_tools\";b:0;s:33:\"exclude_css_from_page_speed_tools\";b:0;s:9:\"blacklist\";a:0:{}s:11:\"ignore_list\";a:0:{}s:10:\"exclude_js\";s:0:\"\";s:11:\"exclude_css\";s:0:\"\";s:23:\"edit_default_exclutions\";b:0;s:18:\"merge_allowed_urls\";s:0:\"\";s:7:\"enabled\";b:0;s:17:\"last-cache-update\";i:1756079577;s:14:\"plugin_version\";s:5:\"0.0.0\";s:14:\"cache_lifespan\";i:30;s:25:\"merge_inline_extra_css_js\";b:1;s:16:\"enable_analytics\";b:0;s:16:\"analytics_method\";s:6:\"gtagv4\";s:11:\"tracking_id\";s:0:\"\";}','auto'),
(146,'updraft_task_manager_plugins','a:1:{i:0;s:27:\"wp-optimize/wp-optimize.php\";}','auto'),
(147,'updraft_task_manager_dbversion','1.1','auto'),
(148,'wp-optimize-compression_server','resmushit','auto'),
(149,'wp-optimize-image_quality','92','auto'),
(150,'wp-optimize-back_up_original','1','auto'),
(151,'wp-optimize-back_up_delete_after','1','auto'),
(152,'wp-optimize-back_up_delete_after_days','50','auto'),
(153,'wpo_update_version','4.5.3','auto'),
(156,'db_upgraded','','on'),
(179,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),
(180,'recently_activated','a:1:{s:33:\"qt-servercheck/qt-servercheck.php\";i:1756037969;}','off'),
(183,'finished_updating_comment_type','1','auto'),
(188,'current_theme','OnAir2','auto'),
(189,'theme_mods_onair2','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1755491147;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"right-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:13:\"footersidebar\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"popupwidgets\";a:0:{}}}s:18:\"custom_css_post_id\";i:-1;}','on'),
(190,'theme_switched','','auto'),
(193,'qtt_product_id','19340714','auto'),
(194,'qtt_welcome_page','installer','auto'),
(196,'wpo_cache_config','a:29:{s:19:\"enable_page_caching\";b:0;s:23:\"page_cache_length_value\";i:24;s:22:\"page_cache_length_unit\";s:5:\"hours\";s:17:\"page_cache_length\";i:86400;s:32:\"cache_exception_conditional_tags\";a:0:{}s:20:\"cache_exception_urls\";a:0:{}s:28:\"cache_ignore_query_variables\";a:0:{}s:23:\"cache_exception_cookies\";a:0:{}s:30:\"cache_exception_browser_agents\";a:0:{}s:22:\"enable_sitemap_preload\";b:0;s:23:\"enable_schedule_preload\";b:0;s:21:\"preload_schedule_type\";s:0:\"\";s:21:\"enable_mobile_caching\";b:0;s:19:\"enable_user_caching\";b:0;s:8:\"site_url\";s:32:\"https://www.frequency1radio.com/\";s:24:\"enable_cache_per_country\";b:0;s:27:\"enable_cache_aelia_currency\";b:0;s:19:\"permalink_structure\";s:36:\"/%year%/%monthnum%/%day%/%postname%/\";s:7:\"uploads\";s:52:\"/home/frequency1radio/public_html/wp-content/uploads\";s:10:\"gmt_offset\";s:1:\"0\";s:15:\"timezone_string\";s:0:\"\";s:11:\"date_format\";s:6:\"F j, Y\";s:11:\"time_format\";s:5:\"g:i a\";s:15:\"use_webp_images\";b:0;s:12:\"show_avatars\";i:0;s:22:\"host_gravatars_locally\";i:0;s:28:\"auto_preload_purged_contents\";b:1;s:17:\"wpo_cache_cookies\";a:0:{}s:25:\"wpo_cache_query_variables\";a:0:{}}','auto'),
(812,'category_children','a:0:{}','auto'),
(4131,'updraft_lock_load-url-task','0','no'),
(4132,'updraft_lock_wpo_page_cache_preloader_creating_tasks','0','no'),
(4133,'wp-optimize-is_gzip_compression_enabled','gzip','auto'),
(4134,'updraft_lock_wpo_minify_preloader_creating_tasks','0','no'),
(4137,'wp-optimize-corrupted-tables-count','0','auto'),
(4140,'wp-optimize-install-or-update-notice-version','1.1','auto'),
(4141,'wp-optimize-enable-auto-backup','false','auto'),
(4142,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.9.4\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}','on'),
(4143,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"8c7d46a72d7d4591fc1dd9485bedb304\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),
(4175,'theme_mods_onair2-child','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:1756043702;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"right-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:13:\"footersidebar\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"popupwidgets\";a:0:{}}}}','off'),
(4566,'_transient_health-check-site-status-result','{\"good\":21,\"recommended\":3,\"critical\":0}','on'),
(4987,'wp-optimize-dismiss_dash_notice_until','1787660040','auto'),
(4998,'wp-optimize-dismiss_review_notice','1763295638','auto'),
(5082,'seedprod_migration_run_once','1','auto'),
(5083,'seedprod_run_activation','1','auto'),
(5084,'seedprod_settings','{\"api_key\":\"\",\"enable_coming_soon_mode\":true,\"enable_maintenance_mode\":false,\"enable_login_mode\":false,\"enable_404_mode\":false}','auto'),
(5085,'seedprod_over_time','a:3:{s:17:\"installed_version\";s:7:\"6.15.23\";s:14:\"installed_date\";i:1756079580;s:13:\"installed_pro\";s:3:\"pro\";}','auto'),
(5086,'seedprod_token','c0017a9e-146b-4d0e-aa6f-f0dc8af50cd3','auto'),
(5089,'seedprod_user_id','O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":0:{}s:2:\"ID\";i:0;s:4:\"caps\";a:0:{}s:7:\"cap_key\";N;s:5:\"roles\";a:0:{}s:7:\"allcaps\";a:0:{}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:0;}','auto'),
(5090,'seedprod_api_token','api_token','auto'),
(5091,'seedprod_api_key','api_key','auto'),
(5092,'seedprod_api_message','api_message','auto'),
(5093,'seedprod_license_name','lifetime','auto'),
(5094,'seedprod_a','1','auto'),
(5095,'seedprod_per','','auto'),
(5096,'seedprod_usage_tracking_config','a:6:{s:3:\"day\";i:6;s:4:\"hour\";i:19;s:6:\"minute\";i:37;s:6:\"second\";i:29;s:6:\"offset\";i:589049;s:8:\"initsend\";i:1757187449;}','auto'),
(5097,'seedprod_version','6.15.23','auto'),
(5098,'seedprod_dismiss_setup_wizard','1','auto'),
(5099,'seedprod_app_settings','{  \n   \"facebook_g_app_id\":\"\",\n   \"google_places_app_key\":\"\",\n   \"yelp_app_api_key\":\"\",\n   \"disable_seedprod_button\":false,\n   \"disable_seedprod_notification\":false\n}','auto'),
(5100,'seedprod_onetime_flush_rewrite','1','auto'),
(5101,'seedprod_coming_soon_page_id','22','auto'),
(5102,'seedprod_stripe_connect_origin','5f783a36-9cf5-49ca-8397-2f6b5a376cc3','auto'),
(5103,'seedprod_validate_json','','auto'),
(5104,'seedprod_maintenance_mode_page_id','','auto'),
(5105,'seedprod_login_page_id','','auto'),
(5106,'seedprod_404_page_id','','auto'),
(5118,'seedprod_notifications','a:4:{s:6:\"update\";i:1766800548;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','auto'),
(6624,'seedprod_usage_tracking_last_checkin','1766260800','auto'),
(9514,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:35:\"customerservice@frequency1radio.com\";s:7:\"version\";s:3:\"6.9\";s:9:\"timestamp\";i:1764731429;}','off'),
(16496,'wp_notes_notify','1','on'),
(16629,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1777960812;s:7:\"checked\";a:3:{s:12:\"onair2-child\";s:5:\"1.0.0\";s:6:\"onair2\";s:5:\"5.9.2\";s:16:\"twentytwentyfive\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.4.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}','off'),
(18935,'_site_transient_timeout_php_check_8a123bb734cee8ca25bf42ce5351763f','1767235126','off'),
(18936,'_site_transient_php_check_8a123bb734cee8ca25bf42ce5351763f','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),
(19185,'_transient_doing_cron','1777960809.2540960311889648437500','on'),
(19441,'wp-optimize-total-cleaned-current-month','0','auto'),
(19442,'wp-optimize-total-cleaned-previous-month','0','auto'),
(19560,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.9.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.9.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.4\";s:7:\"version\";s:5:\"6.9.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1777960809;s:15:\"version_checked\";s:5:\"6.9.4\";s:12:\"translations\";a:0:{}}','off'),
(19757,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1777960810;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:27:\"wp-optimize/wp-optimize.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-optimize\";s:4:\"slug\";s:11:\"wp-optimize\";s:6:\"plugin\";s:27:\"wp-optimize/wp-optimize.php\";s:11:\"new_version\";s:5:\"4.5.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-optimize/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-optimize.4.5.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-256x256.png?rev=1552899\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-128x128.png?rev=1552899\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-optimize/assets/banner-1544x500.png?rev=2125385\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-optimize/assets/banner-772x250.png?rev=2125385\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}}s:7:\"checked\";a:3:{s:33:\"qt-servercheck/qt-servercheck.php\";s:3:\"2.0\";s:57:\"seedprod-coming-soon-pro-5/seedprod-coming-soon-pro-5.php\";s:7:\"6.15.23\";s:27:\"wp-optimize/wp-optimize.php\";s:5:\"4.5.3\";}}','off'),
(19776,'_site_transient_timeout_wp_theme_files_patterns-d16c9587b6f04413350c5974023d67f9','1777962608','off'),
(19777,'_site_transient_wp_theme_files_patterns-d16c9587b6f04413350c5974023d67f9','a:2:{s:7:\"version\";s:5:\"5.9.2\";s:8:\"patterns\";a:0:{}}','off'),
(19778,'_site_transient_timeout_theme_roots','1777962611','off'),
(19779,'_site_transient_theme_roots','a:3:{s:12:\"onair2-child\";s:7:\"/themes\";s:6:\"onair2\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";}','off');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

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

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES
(33,22,'_seedprod_page','1'),
(34,22,'_seedprod_page_uuid','d875e8bb-53cf-4af0-ae24-a5baeb7004a5'),
(35,22,'_seedprod_page_template_type','cs'),
(36,22,'_seedprod_block_usage','a:3:{s:6:\"header\";a:2:{s:4:\"name\";s:8:\"Headline\";s:5:\"count\";i:1;}s:4:\"text\";a:2:{s:4:\"name\";s:4:\"Text\";s:5:\"count\";i:1;}s:5:\"image\";a:2:{s:4:\"name\";s:5:\"Image\";s:5:\"count\";i:1;}}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `type_status_author` (`post_type`,`post_status`,`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES
(4,0,'2025-07-16 02:05:24','2025-07-16 02:05:24','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2025-07-16 02:05:24','2025-07-16 02:05:24','',0,'https://www.frequency1radio.com/2025/07/16/navigation/',0,'wp_navigation','',0),
(22,1,'2025-08-24 23:55:17','2025-08-24 23:55:17','<div id=\"sp-page\" class=\"spBgcover sp-content-4\" style=\"background-image: url(\'https://assets.seedprod.com/93-7v88vkr23q3ujpcp.jpg\'); font-family: Inter, sans-serif; font-weight: 400;\"><section id=\"sp-ckzdoppede1\" data-mobile-visibility=\"#sp-ckzdoppede1|false\" data-tablet-visibility=\"#sp-ckzdoppede1|false\" data-desktop-visibility=\"#sp-ckzdoppede1|false\" data-mobile-css=\"\" data-tablet-css=\"\" class=\"sp-el-section  spBgcover\" style=\"width: 100%; max-width: 100%; padding: 10px;\"><div id=\"sp-rahpdx4qbt4v\" data-mobile-visibility=\"#sp-rahpdx4qbt4v|false\" data-tablet-visibility=\"#sp-rahpdx4qbt4v|false\" data-desktop-visibility=\"#sp-rahpdx4qbt4v|false\" data-mobile-css=\"\" data-tablet-css=\"\" class=\"sp-el-row sm:sp-flex sp-w-full  sp-m-auto spBgcover sp-justify-between\" style=\"padding: 10px; width: auto; max-width: 1000px;\"><div id=\"sp-nlys3wrlqsuq\" data-mobile-visibility=\"#sp-nlys3wrlqsuq|false\" data-tablet-visibility=\"#sp-nlys3wrlqsuq|false\" data-desktop-visibility=\"#sp-nlys3wrlqsuq|false\" data-mobile-css=\"\" data-tablet-css=\"\" class=\"sp-el-col  spBgcover sp-w-full\" style=\"width: calc(50% + 0px);\"><style type=\"text/css\">\n      #sp-nlys3wrlqsuq .sp-col-top .seedprod-shape-fill {fill: undefined;} #sp-nlys3wrlqsuq .sp-col-top svg {width: undefined%;height: undefinedpx;transform: translateX(-50%);} #sp-nlys3wrlqsuq .sp-col-bottom .seedprod-shape-fill {fill: undefined;} #sp-nlys3wrlqsuq .sp-col-bottom svg {width: undefined%;height: undefinedpx;transform: translateX(-50%);}\n    </style><div class=\"sp-col-shape sp-col-top\" style=\"z-index: 0;\"><div></div></div><div class=\"sp-col-shape sp-col-bottom\" style=\"z-index: 0;\"><div></div></div><h1 id=\"sp-wxi918kaufaj\" data-mobile-css=\".sp-headline-block-wxi918kaufaj, #sp-wxi918kaufaj, #wxi918kaufaj|text-align:center;\" data-tablet-css=\".sp-headline-block-wxi918kaufaj, #sp-wxi918kaufaj, #wxi918kaufaj|text-align:center;\" data-mobile-visibility=\".sp-headline-block-wxi918kaufaj|false\" data-tablet-visibility=\".sp-headline-block-wxi918kaufaj|false\" data-desktop-visibility=\".sp-headline-block-wxi918kaufaj|false\" class=\"sp-css-target sp-el-block sp-headline-block-wxi918kaufaj sp-type-header\" style=\"font-size: 60px; text-align: left; margin: 0px;\">We are&nbsp;<br>Coming Soon</h1><div id=\"to9pc086it6g\" data-mobile-css=\".sp-text-wrapper-to9pc086it6g, #sp-to9pc086it6g, #to9pc086it6g|text-align:left;\" data-tablet-css=\".sp-text-wrapper-to9pc086it6g, #sp-to9pc086it6g, #to9pc086it6g|text-align:left;\" data-mobile-visibility=\".sp-text-wrapper-to9pc086it6g|false\" data-tablet-visibility=\".sp-text-wrapper-to9pc086it6g|false\" data-desktop-visibility=\".sp-text-wrapper-to9pc086it6g|false\" class=\"sp-css-target sp-text-wrapper sp-el-block sp-text-wrapper-to9pc086it6g mce-content-body html4-captions\"  style=\"margin: 0px; text-align: left; position: relative;\" ><p>Get ready we have something coming that is going to blow you away.&nbsp;</p></div></div><div id=\"sp-sysknox8r1l\" data-mobile-visibility=\"#sp-sysknox8r1l|false\" data-tablet-visibility=\"#sp-sysknox8r1l|false\" data-desktop-visibility=\"#sp-sysknox8r1l|false\" data-mobile-css=\"\" data-tablet-css=\"\" class=\"sp-el-col  spBgcover sp-w-full\" style=\"width: calc(50% + 0px);\"><style type=\"text/css\">\n      #sp-sysknox8r1l .sp-col-top .seedprod-shape-fill {fill: undefined;} #sp-sysknox8r1l .sp-col-top svg {width: undefined%;height: undefinedpx;transform: translateX(-50%);} #sp-sysknox8r1l .sp-col-bottom .seedprod-shape-fill {fill: undefined;} #sp-sysknox8r1l .sp-col-bottom svg {width: undefined%;height: undefinedpx;transform: translateX(-50%);}\n    </style><div class=\"sp-col-shape sp-col-top\" style=\"z-index: 0;\"><div></div></div><div class=\"sp-col-shape sp-col-bottom\" style=\"z-index: 0;\"><div></div></div><figure id=\"sp-wjkkjogg2c2\" data-mobile-css=\"#sp-wjkkjogg2c2|text-align:center;\" data-tablet-css=\"#sp-wjkkjogg2c2|text-align:center;\" class=\"sp-image-wrapper sp-el-block\" style=\"margin: 0px; text-align: center;\"><div><span><img src=\"https://assets.seedprod.com/93-zjzv5aec44wxy3as.png\" alt=\"\" width=\"\" height=\"\" data-mobile-visibility=\".sp-image-block-wjkkjogg2c2|false\" data-tablet-visibility=\".sp-image-block-wjkkjogg2c2|false\" data-desktop-visibility=\".sp-image-block-wjkkjogg2c2|false\" class=\"sp-image-block-wjkkjogg2c2\"></span></div></figure></div></div></section></div>','','','publish','closed','closed','','22','','','2025-08-24 23:55:17','2025-08-24 23:55:17','{\"show_header_template\":true,\"show_footer_template\":true,\"no_conflict_mode\":true,\"no_index\":false,\"seo_title\":\"\",\"seo_description\":\"\",\"favicon\":\"\",\"social_thumbnail\":\"\",\"enable_recaptcha\":false,\"template_id\":93,\"post_title\":\"\",\"post_name\":\"\",\"post_status\":\"draft\",\"show_powered_by_link\":false,\"facebook_app_id\":\"\",\"affiliate_url\":\"\",\"header_scripts\":\"\",\"body_scripts\":\"\",\"footer_scripts\":\"\",\"conversion_scripts\":\"\",\"disable_default_excluded_urls\":false,\"include_exclude_type\":\"0\",\"include_list\":\"\",\"exclude_list\":\"\",\"bypass_phrase\":\"\",\"bypass_expires\":\"2\",\"bypass_cookie\":false,\"access_by_ip\":\"\",\"access_by_role\":[],\"redirect_login_page\":false,\"redirect_mode\":false,\"redirect_url\":\"\",\"domain_mapping_status\":false,\"domain_mapping\":\"\",\"domain_mapping_force_https\":false,\"exclude_list_404\":\"\",\"email_integration_id\":\"\",\"is_new\":false,\"page_type\":\"cs\",\"document\":{\"sections\":[{\"id\":\"ckzdoppede1\",\"type\":\"section\",\"rows\":[{\"id\":\"rahpdx4qbt4v\",\"type\":\"row\",\"colType\":\"2-col\",\"cols\":[{\"id\":\"nlys3wrlqsuq\",\"type\":\"col\",\"blocks\":[{\"id\":\"wxi918kaufaj\",\"elType\":\"block\",\"type\":\"header\",\"settings\":{\"headerTxt\":\"We are&nbsp;<br />Coming Soon\",\"tag\":\"h1\",\"textColor\":\"\",\"bgColor\":\"\",\"beforeIcon\":\"\",\"afterIcon\":\"\",\"marginTop\":\"0\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadius\":\"\",\"border\":\"\",\"borderStyle\":\"\",\"borderSize\":\"\",\"borderColor\":\"\",\"shadow\":\"\",\"textShadow\":\"\",\"font\":\"\",\"fontVariant\":\"\",\"fontSize\":60,\"fontSize_mobile\":\"\",\"lineHeight\":\"\",\"lineHeight_mobile\":\"\",\"letterSpacing\":\"\",\"letterSpacing_mobile\":\"\",\"typographyBold\":\"\",\"typographyItalic\":\"\",\"typographyUnderline\":\"\",\"align\":\"left\",\"typographyLetterCase\":\"\",\"marginBottom\":\"\",\"marginLeft\":\"\",\"marginRight\":\"\",\"marginSync\":false,\"marginTop_mobile\":\"\",\"marginBottom_mobile\":\"\",\"marginLeft_mobile\":\"\",\"marginRight_mobile\":\"\",\"marginSync_mobile\":false,\"marginTop_tablet\":\"\",\"marginBottom_tablet\":\"\",\"marginLeft_tablet\":\"\",\"marginRight_tablet\":\"\",\"marginSync_tablet\":false,\"customClass\":\"\",\"paddingTop_mobile\":\"\",\"paddingBottom_mobile\":\"\",\"paddingLeft_mobile\":\"\",\"paddingRight_mobile\":\"\",\"paddingSync_mobile\":true,\"paddingTop_tablet\":\"\",\"paddingBottom_tablet\":\"\",\"paddingLeft_tablet\":\"\",\"paddingRight_tablet\":\"\",\"paddingSync_tablet\":true,\"textshadowColor\":\"\",\"textshadowHorizontal\":0,\"textshadowVertical\":0,\"textshadowBlur\":3,\"textshadowSpread\":0,\"textshadowPosition\":\"outline\",\"fontSize_tablet\":\"\",\"lineHeight_tablet\":\"\",\"letterSpacing_tablet\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"hideOnDesktop\":false,\"hideOnTablet\":false,\"hideOnMobile\":false,\"entranceAnimation\":\"\"}},{\"id\":\"to9pc086it6g\",\"elType\":\"block\",\"type\":\"text\",\"settings\":{\"txt\":\"<p>Get ready we have something coming that is going to blow you away.&nbsp;</p>\",\"textColor\":\"\",\"bgColor\":\"\",\"beforeIcon\":\"\",\"afterIcon\":\"\",\"marginTop\":\"0\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadius\":\"\",\"border\":\"\",\"borderStyle\":\"\",\"borderSize\":\"\",\"borderColor\":\"\",\"shadow\":\"\",\"textShadow\":\"\",\"font\":\"\",\"fontVariant\":\"\",\"fontSize\":\"\",\"fontSize_mobile\":\"\",\"lineHeight\":\"\",\"lineHeight_mobile\":\"\",\"letterSpacing\":\"\",\"letterSpacing_mobile\":\"\",\"typographyBold\":\"\",\"typographyItalic\":\"\",\"typographyUnderline\":\"\",\"align\":\"left\",\"typographyLetterCase\":\"\",\"editortxt\":\"code\",\"marginBottom\":\"\",\"marginLeft\":\"\",\"marginRight\":\"\",\"marginSync\":false,\"marginTop_mobile\":\"\",\"marginBottom_mobile\":\"\",\"marginLeft_mobile\":\"\",\"marginRight_mobile\":\"\",\"marginSync_mobile\":false,\"marginTop_tablet\":\"\",\"marginBottom_tablet\":\"\",\"marginLeft_tablet\":\"\",\"marginRight_tablet\":\"\",\"marginSync_tablet\":false,\"customClass\":\"\",\"paddingTop_mobile\":\"\",\"paddingBottom_mobile\":\"\",\"paddingLeft_mobile\":\"\",\"paddingRight_mobile\":\"\",\"paddingSync_mobile\":true,\"paddingTop_tablet\":\"\",\"paddingBottom_tablet\":\"\",\"paddingLeft_tablet\":\"\",\"paddingRight_tablet\":\"\",\"paddingSync_tablet\":true,\"shadowColor\":\"\",\"shadowHorizontal\":0,\"shadowVertical\":0,\"shadowBlur\":3,\"shadowSpread\":0,\"shadowPosition\":\"outline\",\"textshadowColor\":\"\",\"textshadowHorizontal\":0,\"textshadowVertical\":0,\"textshadowBlur\":3,\"textshadowSpread\":0,\"textshadowPosition\":\"outline\",\"fontSize_tablet\":\"\",\"lineHeight_tablet\":\"\",\"letterSpacing_tablet\":\"\",\"align_mobile\":\"left\",\"align_tablet\":\"left\",\"entranceAnimation\":\"\",\"hideOnDesktop\":false,\"hideOnMobile\":false,\"hideOnTablet\":false}}],\"settings\":{\"colWidth\":\"\",\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"cover\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadius\":\"\",\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\"}},{\"id\":\"sysknox8r1l\",\"type\":\"col\",\"blocks\":[{\"id\":\"wjkkjogg2c2\",\"elType\":\"block\",\"type\":\"image\",\"settings\":{\"unit\":\"px\",\"src\":\"https://assets.seedprod.com/93-zjzv5aec44wxy3as.png\",\"altTxt\":\"\",\"link\":\"\",\"width\":\"\",\"height\":\"\",\"marginTop\":\"0\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"align\":\"center\",\"shadow\":\"\",\"block_template_id\":false,\"imagePadding\":\"\",\"imgBorderRadius\":\"\",\"imgBorderTop\":\"0\",\"imgBorderBottom\":\"0\",\"imgBorderLeft\":\"0\",\"imgBorderRight\":\"0\",\"imgBorderSync\":true,\"imgBorderStyle\":\"solid\",\"imageBorderColor\":\"\",\"blockTemplateId\":false,\"linktype\":\"custom\",\"openNewWindow\":false,\"noFollow\":false,\"marginBottom\":\"\",\"marginLeft\":\"\",\"marginRight\":\"\",\"marginSync\":false,\"marginTop_mobile\":\"\",\"marginBottom_mobile\":\"\",\"marginLeft_mobile\":\"\",\"marginRight_mobile\":\"\",\"marginSync_mobile\":false,\"marginTop_tablet\":\"\",\"marginBottom_tablet\":\"\",\"marginLeft_tablet\":\"\",\"marginRight_tablet\":\"\",\"marginSync_tablet\":false,\"customClass\":\"\",\"paddingTop_mobile\":\"\",\"paddingBottom_mobile\":\"\",\"paddingLeft_mobile\":\"\",\"paddingRight_mobile\":\"\",\"paddingSync_mobile\":true,\"paddingTop_tablet\":\"\",\"paddingBottom_tablet\":\"\",\"paddingLeft_tablet\":\"\",\"paddingRight_tablet\":\"\",\"paddingSync_tablet\":true,\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"imageBorderRadius\":\"\",\"imageBorderTop\":\"0\",\"imageBorderBottom\":\"0\",\"imageBorderLeft\":\"0\",\"imageBorderRight\":\"0\",\"imageBorderSync\":true,\"imageBorderStyle\":\"solid\",\"radiusunit\":\"px\",\"imghiddenwidth\":\"\",\"imghiddenheight\":\"\",\"borderRadiusSync\":true,\"shadowColor\":\"#000000\",\"shadowSpread\":\"-20\",\"shadowHorizontal\":\"0\",\"borderRadiusTL\":\"\",\"borderRadiusTR\":\"\",\"borderRadiusBL\":\"\",\"borderRadiusBR\":\"\",\"shadowVertical\":\"20\",\"shadowBlur\":\"20\",\"shadowPosition\":\"outline\",\"objectfit\":\"\",\"entranceAnimation\":\"\",\"hideOnDesktop\":false,\"hideOnMobile\":false,\"hideOnTablet\":false}}],\"settings\":{\"colWidth\":\"\",\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"cover\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadius\":\"\",\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\"}}],\"settings\":{\"width\":\"1000\",\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"cover\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"10\",\"paddingBottom\":\"10\",\"paddingLeft\":\"10\",\"paddingRight\":\"10\",\"paddingSync\":true,\"borderRadius\":\"\",\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\",\"bgStyle\":\"s\",\"bgGradient\":{\"type\":\"linear\",\"position\":\"center\",\"angle\":0,\"color1\":\"\",\"color1location\":0,\"color2\":\"\",\"color2location\":100},\"colGutter\":0,\"borderRadiusTL\":\"\",\"borderRadiusTR\":\"\",\"borderRadiusBL\":\"\",\"borderRadiusBR\":\"\",\"borderRadiusSync\":true,\"contentWidth\":2,\"bgDimming\":0,\"bgDimmingOverlay\":\"\",\"bgCustomDimming\":0,\"bgCustomDimmingOverlay\":\"\",\"bgCustomXPositionUnit\":\"px\",\"bgCustomXPosition\":\"\",\"bgCustomYPositionUnit\":\"px\",\"bgCustomYPosition\":\"\",\"bgCustomAttachment\":\"\",\"bgCustomRepeat\":\"\",\"bgCustomSize\":\"\",\"bgCustomSizeWidthUnit\":\"%\",\"bgCustomSizeWidth\":\"100\",\"marginBottom\":\"\",\"marginLeft\":\"\",\"marginRight\":\"\",\"marginSync\":false,\"marginTop_mobile\":\"\",\"marginBottom_mobile\":\"\",\"marginLeft_mobile\":\"\",\"marginRight_mobile\":\"\",\"marginSync_mobile\":false,\"marginTop_tablet\":\"\",\"marginBottom_tablet\":\"\",\"marginLeft_tablet\":\"\",\"marginRight_tablet\":\"\",\"marginSync_tablet\":false,\"customClass\":\"\",\"shadowColor\":\"\",\"shadowHorizontal\":0,\"shadowVertical\":0,\"shadowBlur\":3,\"shadowSpread\":0,\"shadowPosition\":\"outline\",\"paddingTop_mobile\":\"\",\"paddingBottom_mobile\":\"\",\"paddingLeft_mobile\":\"\",\"paddingRight_mobile\":\"\",\"paddingSync_mobile\":true,\"paddingTop_tablet\":\"\",\"paddingBottom_tablet\":\"\",\"paddingLeft_tablet\":\"\",\"paddingRight_tablet\":\"\",\"paddingSync_tablet\":true,\"entranceAnimation\":\"\",\"alignType\":\"s\",\"display\":\"\",\"flexDirection\":\"row\",\"justifyContent\":\"\",\"alignItems\":\"\",\"cssPosition\":\"\",\"offsetTop\":\"\",\"offsetRight\":\"\",\"offsetBottom\":\"\",\"offsetLeft\":\"\",\"zIndex\":\"\",\"overflow\":\"\",\"shapeDivider\":\"t\",\"bottomShapeType\":\"\",\"bottomShapeColor\":\"\",\"bottomshapewidth\":100,\"bottomshapeheight\":\"\",\"bottomflip\":false,\"bottomfront\":false,\"topShapeType\":\"\",\"topShapeColor\":\"\",\"topshapewidth\":100,\"topshapeheight\":\"\",\"topflip\":false,\"topfront\":false,\"hideOnDesktop\":false,\"hideOnMobile\":false,\"hideOnTablet\":false}}],\"settings\":{\"contentWidth\":1,\"width\":\"1000\",\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"cover\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"10\",\"paddingBottom\":\"10\",\"paddingLeft\":\"10\",\"paddingRight\":\"10\",\"paddingSync\":true,\"borderRadius\":\"\",\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\",\"bgStyle\":\"s\",\"bgGradient\":{\"type\":\"linear\",\"position\":\"center\",\"angle\":0,\"color1\":\"\",\"color1location\":0,\"color2\":\"\",\"color2location\":100},\"particleBg\":false,\"particleStyle\":\"default\",\"customParticlesJSON\":\"\",\"particlesOpacity\":\"0.5\",\"particlesFlowDirection\":\"left\",\"particlesAdvanceSettings\":false,\"particlesDotColor\":\"\",\"numParticles\":\"\",\"sizeParticles\":\"\",\"moveParticlesSpeed\":10,\"particlesHoverEffect\":true,\"bgDimming\":0,\"bgDimmingOverlay\":\"\",\"bgCustomDimming\":0,\"bgCustomDimmingOverlay\":\"\",\"bgCustomXPositionUnit\":\"px\",\"bgCustomXPosition\":\"\",\"bgCustomYPositionUnit\":\"px\",\"bgCustomYPosition\":\"\",\"bgCustomAttachment\":\"\",\"bgCustomRepeat\":\"\",\"bgCustomSize\":\"\",\"bgCustomSizeWidthUnit\":\"%\",\"bgCustomSizeWidth\":\"100\",\"marginBottom\":\"\",\"marginLeft\":\"\",\"marginRight\":\"\",\"marginSync\":false,\"marginTop_mobile\":\"\",\"marginBottom_mobile\":\"\",\"marginLeft_mobile\":\"\",\"marginRight_mobile\":\"\",\"marginSync_mobile\":false,\"marginTop_tablet\":\"\",\"marginBottom_tablet\":\"\",\"marginLeft_tablet\":\"\",\"marginRight_tablet\":\"\",\"marginSync_tablet\":false,\"customClass\":\"\",\"shadowColor\":\"\",\"shadowHorizontal\":0,\"shadowVertical\":0,\"shadowBlur\":3,\"shadowSpread\":0,\"shadowPosition\":\"outline\",\"paddingTop_mobile\":\"\",\"paddingBottom_mobile\":\"\",\"paddingLeft_mobile\":\"\",\"paddingRight_mobile\":\"\",\"paddingSync_mobile\":true,\"paddingTop_tablet\":\"\",\"paddingBottom_tablet\":\"\",\"paddingLeft_tablet\":\"\",\"paddingRight_tablet\":\"\",\"paddingSync_tablet\":true,\"borderRadiusTL\":\"\",\"borderRadiusTR\":\"\",\"borderRadiusBL\":\"\",\"borderRadiusBR\":\"\",\"borderRadiusSync\":true,\"shapeDivider\":\"t\",\"bottomShapeType\":\"\",\"bottomShapeColor\":\"\",\"bottomshapewidth\":100,\"bottomshapeheight\":\"\",\"bottomflip\":false,\"bottomfront\":false,\"topShapeType\":\"\",\"topShapeColor\":\"\",\"topshapewidth\":100,\"topshapeheight\":\"\",\"topflip\":false,\"topfront\":false,\"entranceAnimation\":\"\",\"hideOnDesktop\":false,\"hideOnMobile\":false,\"hideOnTablet\":false}}],\"settings\":{\"bgPosition\":\"cover\",\"bgImage\":\"https://assets.seedprod.com/93-7v88vkr23q3ujpcp.jpg\",\"backgroundColor\":\"#1F46AD\",\"bgOverlayColor\":\"#FFFFFF\",\"textFont\":\"Inter\",\"headerFont\":\"Inter\",\"linkDarkerColor\":\"#d3ae04\",\"textFontVariant\":\"400\",\"headerFontVariant\":\"700\",\"buttonColor\":\"#FBD00F\",\"linkColor\":\"#FBD00F\",\"textColor\":\"rgba(255, 255, 255, 0.75)\",\"headerColor\":\"#FFFFFF\",\"contentPosition\":\"4\",\"headCss\":\"#sp-page{color:rgba(255, 255, 255, 0.75)} #sp-page .sp-header-tag-h1,#sp-page .sp-header-tag-h2,#sp-page .sp-header-tag-h3,#sp-page .sp-header-tag-h4,#sp-page .sp-header-tag-h5,#sp-page .sp-header-tag-h6{color:#FFFFFF}#sp-page h1,#sp-page h2,#sp-page h3,#sp-page h4,#sp-page h5,#sp-page h6{color:#FFFFFF; font-family:\'Inter\';font-weight:700;font-style:normal} #sp-page a{color:#FBD00F} #sp-page a:hover{color:#d3ae04}#sp-page .btn{background-color:#FBD00F}body{background-color:undefined !important; background-image:url(\'https://assets.seedprod.com/93-7v88vkr23q3ujpcp.jpg\');}\",\"bgDimming\":0,\"placeholderCss\":\"\",\"mobileCss\":\".sp-mobile-view .sp-headline-block-wxi918kaufaj, .sp-mobile-view  #sp-wxi918kaufaj, .sp-mobile-view  #wxi918kaufaj {text-align:center !important;}.sp-mobile-view .sp-text-wrapper-to9pc086it6g, .sp-mobile-view  #sp-to9pc086it6g, .sp-mobile-view  #to9pc086it6g {text-align:left !important;}.sp-mobile-view #sp-wjkkjogg2c2 {text-align:center !important;}\",\"mobileVisibilityCss\":\"\",\"tabletVisibilityCss\":\"\",\"desktopVisibilityCss\":\"\",\"tabletCss\":\".sp-tablet-view .sp-headline-block-wxi918kaufaj, .sp-tablet-view  #sp-wxi918kaufaj, .sp-tablet-view  #wxi918kaufaj {text-align:center !important;}.sp-tablet-view .sp-text-wrapper-to9pc086it6g, .sp-tablet-view  #sp-to9pc086it6g, .sp-tablet-view  #to9pc086it6g {text-align:left !important;}.sp-tablet-view #sp-wjkkjogg2c2 {text-align:center !important;}\"}}}',0,'https://www.frequency1radio.com/?post_type=seedprod&#038;p=22',0,'seedprod','',0),
(23,1,'2025-08-24 23:53:08','2025-08-24 23:53:08','','sp-cs','','inherit','closed','closed','','22-revision-v1','','','2025-08-24 23:53:08','2025-08-24 23:53:08','{\"show_header_template\":true,\"show_footer_template\":true,\"no_conflict_mode\":true,\"no_index\":false,\"seo_title\":\"\",\"seo_description\":\"\",\"favicon\":\"\",\"social_thumbnail\":\"\",\"enable_recaptcha\":false,\"template_id\":\"\",\"post_title\":\"\",\"post_name\":\"\",\"post_status\":\"\",\"show_powered_by_link\":false,\"facebook_app_id\":\"\",\"affiliate_url\":\"\",\"header_scripts\":\"\",\"body_scripts\":\"\",\"footer_scripts\":\"\",\"conversion_scripts\":\"\",\"disable_default_excluded_urls\":false,\"include_exclude_type\":\"0\",\"include_list\":\"\",\"exclude_list\":\"\",\"bypass_phrase\":\"\",\"bypass_expires\":\"2\",\"bypass_cookie\":false,\"access_by_ip\":\"\",\"access_by_role\":[],\"redirect_login_page\":false,\"redirect_mode\":false,\"redirect_url\":\"\",\"domain_mapping_status\":false,\"domain_mapping\":\"\",\"domain_mapping_force_https\":false,\"exclude_list_404\":\"\",\"email_integration_id\":\"\",\"document\":{\"sections\":[],\"settings\":{\"bgStyle\":\"s\",\"bgGradient\":{\"type\":\"linear\",\"position\":\"center\",\"angle\":0,\"color1\":\"\",\"color1location\":0,\"color2\":\"\",\"color2location\":100},\"bgColor\":\"#FFFFFF\",\"bgImage\":\"\",\"bgDimming\":0,\"bgCustomDimming\":0,\"bgCustomDimmingOverlay\":\"\",\"bgCustomXPositionUnit\":\"px\",\"bgCustomXPosition\":\"\",\"bgCustomYPositionUnit\":\"px\",\"bgCustomYPosition\":\"\",\"bgCustomAttachment\":\"\",\"bgCustomRepeat\":\"\",\"bgCustomSize\":\"\",\"bgCustomSizeWidthUnit\":\"%\",\"bgCustomSizeWidth\":\"100\",\"bgOverlayColor\":\"\",\"bgPosition\":\"cover\",\"buttonColor\":\"#000000\",\"headerColor\":\"#000000\",\"linkColor\":\"#FF0000\",\"linkDarkerColor\":\"#cc0000\",\"textColor\":\"#272727\",\"textFont\":\"\'Helvetica Neue\', Arial, sans-serif\",\"textFontVariant\":\"400\",\"headerFont\":\"\'Helvetica Neue\', Arial, sans-serif\",\"headerFontVariant\":\"400\",\"contentPosition\":\"1\",\"customCss\":\"\",\"headCss\":\"\",\"mobileCss\":\"\",\"tabletCss\":\"\",\"mobileVisibilityCss\":\"\",\"tabletVisibilityCss\":\"\",\"desktopVisibilityCss\":\"\",\"placeholderCss\":\"\",\"useVideoBg\":false,\"useVideoBgUrl\":\"\",\"useSlideshowBg\":false,\"useSlideshowImgs\":[\"\"]}},\"is_new\":true,\"page_type\":\"cs\"}',22,'https://www.frequency1radio.com/?p=23',0,'revision','',0),
(24,1,'2025-08-24 23:54:15','2025-08-24 23:54:15','<div id=\"sp-page\" class=\"spBgcover sp-content-4\" style=\"background-image: url(\'https://assets.seedprod.com/93-7v88vkr23q3ujpcp.jpg\'); font-family: Inter, sans-serif; font-weight: 400;\"><section id=\"sp-ckzdoppede1\" data-mobile-visibility=\"#sp-ckzdoppede1|false\" data-tablet-visibility=\"#sp-ckzdoppede1|false\" data-desktop-visibility=\"#sp-ckzdoppede1|false\" data-mobile-css=\"\" data-tablet-css=\"\" class=\"sp-el-section  spBgcover\" style=\"width: 100%; max-width: 100%; padding: 10px;\"><div id=\"sp-rahpdx4qbt4v\" data-mobile-visibility=\"#sp-rahpdx4qbt4v|false\" data-tablet-visibility=\"#sp-rahpdx4qbt4v|false\" data-desktop-visibility=\"#sp-rahpdx4qbt4v|false\" data-mobile-css=\"\" data-tablet-css=\"\" class=\"sp-el-row sm:sp-flex sp-w-full  sp-m-auto spBgcover sp-justify-between\" style=\"padding: 10px; width: auto; max-width: 1000px;\"><div id=\"sp-nlys3wrlqsuq\" data-mobile-visibility=\"#sp-nlys3wrlqsuq|false\" data-tablet-visibility=\"#sp-nlys3wrlqsuq|false\" data-desktop-visibility=\"#sp-nlys3wrlqsuq|false\" data-mobile-css=\"\" data-tablet-css=\"\" class=\"sp-el-col  spBgcover sp-w-full\" style=\"width: calc(50% + 0px);\"><style type=\"text/css\">\n      #sp-nlys3wrlqsuq .sp-col-top .seedprod-shape-fill {fill: undefined;} #sp-nlys3wrlqsuq .sp-col-top svg {width: undefined%;height: undefinedpx;transform: translateX(-50%);} #sp-nlys3wrlqsuq .sp-col-bottom .seedprod-shape-fill {fill: undefined;} #sp-nlys3wrlqsuq .sp-col-bottom svg {width: undefined%;height: undefinedpx;transform: translateX(-50%);}\n    </style><div class=\"sp-col-shape sp-col-top\" style=\"z-index: 0;\"><div></div></div><div class=\"sp-col-shape sp-col-bottom\" style=\"z-index: 0;\"><div></div></div><h1 id=\"sp-wxi918kaufaj\" data-mobile-css=\".sp-headline-block-wxi918kaufaj, #sp-wxi918kaufaj, #wxi918kaufaj|text-align:center;\" data-tablet-css=\".sp-headline-block-wxi918kaufaj, #sp-wxi918kaufaj, #wxi918kaufaj|text-align:center;\" data-mobile-visibility=\".sp-headline-block-wxi918kaufaj|false\" data-tablet-visibility=\".sp-headline-block-wxi918kaufaj|false\" data-desktop-visibility=\".sp-headline-block-wxi918kaufaj|false\" class=\"sp-css-target sp-el-block sp-headline-block-wxi918kaufaj sp-type-header\" style=\"font-size: 60px; text-align: left; margin: 0px;\">We are&nbsp;<br>Coming Soon</h1><div id=\"to9pc086it6g\" data-mobile-css=\".sp-text-wrapper-to9pc086it6g, #sp-to9pc086it6g, #to9pc086it6g|text-align:left;\" data-tablet-css=\".sp-text-wrapper-to9pc086it6g, #sp-to9pc086it6g, #to9pc086it6g|text-align:left;\" data-mobile-visibility=\".sp-text-wrapper-to9pc086it6g|false\" data-tablet-visibility=\".sp-text-wrapper-to9pc086it6g|false\" data-desktop-visibility=\".sp-text-wrapper-to9pc086it6g|false\" class=\"sp-css-target sp-text-wrapper sp-el-block sp-text-wrapper-to9pc086it6g mce-content-body html4-captions\"  style=\"margin: 0px; text-align: left; position: relative;\" ><p>Get ready we have something coming that is going to blow you away.&nbsp;</p></div></div><div id=\"sp-sysknox8r1l\" data-mobile-visibility=\"#sp-sysknox8r1l|false\" data-tablet-visibility=\"#sp-sysknox8r1l|false\" data-desktop-visibility=\"#sp-sysknox8r1l|false\" data-mobile-css=\"\" data-tablet-css=\"\" class=\"sp-el-col  spBgcover sp-w-full\" style=\"width: calc(50% + 0px);\"><style type=\"text/css\">\n      #sp-sysknox8r1l .sp-col-top .seedprod-shape-fill {fill: undefined;} #sp-sysknox8r1l .sp-col-top svg {width: undefined%;height: undefinedpx;transform: translateX(-50%);} #sp-sysknox8r1l .sp-col-bottom .seedprod-shape-fill {fill: undefined;} #sp-sysknox8r1l .sp-col-bottom svg {width: undefined%;height: undefinedpx;transform: translateX(-50%);}\n    </style><div class=\"sp-col-shape sp-col-top\" style=\"z-index: 0;\"><div></div></div><div class=\"sp-col-shape sp-col-bottom\" style=\"z-index: 0;\"><div></div></div><figure id=\"sp-wjkkjogg2c2\" data-mobile-css=\"#sp-wjkkjogg2c2|text-align:center;\" data-tablet-css=\"#sp-wjkkjogg2c2|text-align:center;\" class=\"sp-image-wrapper sp-el-block\" style=\"margin: 0px; text-align: center;\"><div><span><img src=\"https://assets.seedprod.com/93-zjzv5aec44wxy3as.png\" alt=\"\" width=\"\" height=\"\" data-mobile-visibility=\".sp-image-block-wjkkjogg2c2|false\" data-tablet-visibility=\".sp-image-block-wjkkjogg2c2|false\" data-desktop-visibility=\".sp-image-block-wjkkjogg2c2|false\" class=\"sp-image-block-wjkkjogg2c2\"></span></div></figure></div></div></section></div>','','','inherit','closed','closed','','22-revision-v1','','','2025-08-24 23:54:15','2025-08-24 23:54:15','{\"show_header_template\":true,\"show_footer_template\":true,\"no_conflict_mode\":true,\"no_index\":false,\"seo_title\":\"\",\"seo_description\":\"\",\"favicon\":\"\",\"social_thumbnail\":\"\",\"enable_recaptcha\":false,\"template_id\":93,\"post_title\":\"\",\"post_name\":\"\",\"post_status\":\"draft\",\"show_powered_by_link\":false,\"facebook_app_id\":\"\",\"affiliate_url\":\"\",\"header_scripts\":\"\",\"body_scripts\":\"\",\"footer_scripts\":\"\",\"conversion_scripts\":\"\",\"disable_default_excluded_urls\":false,\"include_exclude_type\":\"0\",\"include_list\":\"\",\"exclude_list\":\"\",\"bypass_phrase\":\"\",\"bypass_expires\":\"2\",\"bypass_cookie\":false,\"access_by_ip\":\"\",\"access_by_role\":[],\"redirect_login_page\":false,\"redirect_mode\":false,\"redirect_url\":\"\",\"domain_mapping_status\":false,\"domain_mapping\":\"\",\"domain_mapping_force_https\":false,\"exclude_list_404\":\"\",\"email_integration_id\":\"\",\"is_new\":false,\"page_type\":\"cs\",\"document\":{\"sections\":[{\"id\":\"ckzdoppede1\",\"type\":\"section\",\"rows\":[{\"id\":\"rahpdx4qbt4v\",\"type\":\"row\",\"colType\":\"2-col\",\"cols\":[{\"id\":\"nlys3wrlqsuq\",\"type\":\"col\",\"blocks\":[{\"id\":\"wxi918kaufaj\",\"elType\":\"block\",\"type\":\"header\",\"settings\":{\"headerTxt\":\"We are&nbsp;<br />Coming Soon\",\"tag\":\"h1\",\"textColor\":\"\",\"bgColor\":\"\",\"beforeIcon\":\"\",\"afterIcon\":\"\",\"marginTop\":\"0\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadius\":\"\",\"border\":\"\",\"borderStyle\":\"\",\"borderSize\":\"\",\"borderColor\":\"\",\"shadow\":\"\",\"textShadow\":\"\",\"font\":\"\",\"fontVariant\":\"\",\"fontSize\":60,\"fontSize_mobile\":\"\",\"lineHeight\":\"\",\"lineHeight_mobile\":\"\",\"letterSpacing\":\"\",\"letterSpacing_mobile\":\"\",\"typographyBold\":\"\",\"typographyItalic\":\"\",\"typographyUnderline\":\"\",\"align\":\"left\",\"typographyLetterCase\":\"\",\"marginBottom\":\"\",\"marginLeft\":\"\",\"marginRight\":\"\",\"marginSync\":false,\"marginTop_mobile\":\"\",\"marginBottom_mobile\":\"\",\"marginLeft_mobile\":\"\",\"marginRight_mobile\":\"\",\"marginSync_mobile\":false,\"marginTop_tablet\":\"\",\"marginBottom_tablet\":\"\",\"marginLeft_tablet\":\"\",\"marginRight_tablet\":\"\",\"marginSync_tablet\":false,\"customClass\":\"\",\"paddingTop_mobile\":\"\",\"paddingBottom_mobile\":\"\",\"paddingLeft_mobile\":\"\",\"paddingRight_mobile\":\"\",\"paddingSync_mobile\":true,\"paddingTop_tablet\":\"\",\"paddingBottom_tablet\":\"\",\"paddingLeft_tablet\":\"\",\"paddingRight_tablet\":\"\",\"paddingSync_tablet\":true,\"textshadowColor\":\"\",\"textshadowHorizontal\":0,\"textshadowVertical\":0,\"textshadowBlur\":3,\"textshadowSpread\":0,\"textshadowPosition\":\"outline\",\"fontSize_tablet\":\"\",\"lineHeight_tablet\":\"\",\"letterSpacing_tablet\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"hideOnDesktop\":false,\"hideOnTablet\":false,\"hideOnMobile\":false,\"entranceAnimation\":\"\"}},{\"id\":\"to9pc086it6g\",\"elType\":\"block\",\"type\":\"text\",\"settings\":{\"txt\":\"<p>Get ready we have something coming that is going to blow you away.&nbsp;</p>\",\"textColor\":\"\",\"bgColor\":\"\",\"beforeIcon\":\"\",\"afterIcon\":\"\",\"marginTop\":\"0\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadius\":\"\",\"border\":\"\",\"borderStyle\":\"\",\"borderSize\":\"\",\"borderColor\":\"\",\"shadow\":\"\",\"textShadow\":\"\",\"font\":\"\",\"fontVariant\":\"\",\"fontSize\":\"\",\"fontSize_mobile\":\"\",\"lineHeight\":\"\",\"lineHeight_mobile\":\"\",\"letterSpacing\":\"\",\"letterSpacing_mobile\":\"\",\"typographyBold\":\"\",\"typographyItalic\":\"\",\"typographyUnderline\":\"\",\"align\":\"left\",\"typographyLetterCase\":\"\",\"editortxt\":\"code\",\"marginBottom\":\"\",\"marginLeft\":\"\",\"marginRight\":\"\",\"marginSync\":false,\"marginTop_mobile\":\"\",\"marginBottom_mobile\":\"\",\"marginLeft_mobile\":\"\",\"marginRight_mobile\":\"\",\"marginSync_mobile\":false,\"marginTop_tablet\":\"\",\"marginBottom_tablet\":\"\",\"marginLeft_tablet\":\"\",\"marginRight_tablet\":\"\",\"marginSync_tablet\":false,\"customClass\":\"\",\"paddingTop_mobile\":\"\",\"paddingBottom_mobile\":\"\",\"paddingLeft_mobile\":\"\",\"paddingRight_mobile\":\"\",\"paddingSync_mobile\":true,\"paddingTop_tablet\":\"\",\"paddingBottom_tablet\":\"\",\"paddingLeft_tablet\":\"\",\"paddingRight_tablet\":\"\",\"paddingSync_tablet\":true,\"shadowColor\":\"\",\"shadowHorizontal\":0,\"shadowVertical\":0,\"shadowBlur\":3,\"shadowSpread\":0,\"shadowPosition\":\"outline\",\"textshadowColor\":\"\",\"textshadowHorizontal\":0,\"textshadowVertical\":0,\"textshadowBlur\":3,\"textshadowSpread\":0,\"textshadowPosition\":\"outline\",\"fontSize_tablet\":\"\",\"lineHeight_tablet\":\"\",\"letterSpacing_tablet\":\"\",\"align_mobile\":\"left\",\"align_tablet\":\"left\",\"entranceAnimation\":\"\",\"hideOnDesktop\":false,\"hideOnMobile\":false,\"hideOnTablet\":false}}],\"settings\":{\"colWidth\":\"\",\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"cover\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadius\":\"\",\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\"}},{\"id\":\"sysknox8r1l\",\"type\":\"col\",\"blocks\":[{\"id\":\"wjkkjogg2c2\",\"elType\":\"block\",\"type\":\"image\",\"settings\":{\"unit\":\"px\",\"src\":\"https://assets.seedprod.com/93-zjzv5aec44wxy3as.png\",\"altTxt\":\"\",\"link\":\"\",\"width\":\"\",\"height\":\"\",\"marginTop\":\"0\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"align\":\"center\",\"shadow\":\"\",\"block_template_id\":false,\"imagePadding\":\"\",\"imgBorderRadius\":\"\",\"imgBorderTop\":\"0\",\"imgBorderBottom\":\"0\",\"imgBorderLeft\":\"0\",\"imgBorderRight\":\"0\",\"imgBorderSync\":true,\"imgBorderStyle\":\"solid\",\"imageBorderColor\":\"\",\"blockTemplateId\":false,\"linktype\":\"custom\",\"openNewWindow\":false,\"noFollow\":false,\"marginBottom\":\"\",\"marginLeft\":\"\",\"marginRight\":\"\",\"marginSync\":false,\"marginTop_mobile\":\"\",\"marginBottom_mobile\":\"\",\"marginLeft_mobile\":\"\",\"marginRight_mobile\":\"\",\"marginSync_mobile\":false,\"marginTop_tablet\":\"\",\"marginBottom_tablet\":\"\",\"marginLeft_tablet\":\"\",\"marginRight_tablet\":\"\",\"marginSync_tablet\":false,\"customClass\":\"\",\"paddingTop_mobile\":\"\",\"paddingBottom_mobile\":\"\",\"paddingLeft_mobile\":\"\",\"paddingRight_mobile\":\"\",\"paddingSync_mobile\":true,\"paddingTop_tablet\":\"\",\"paddingBottom_tablet\":\"\",\"paddingLeft_tablet\":\"\",\"paddingRight_tablet\":\"\",\"paddingSync_tablet\":true,\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"imageBorderRadius\":\"\",\"imageBorderTop\":\"0\",\"imageBorderBottom\":\"0\",\"imageBorderLeft\":\"0\",\"imageBorderRight\":\"0\",\"imageBorderSync\":true,\"imageBorderStyle\":\"solid\",\"radiusunit\":\"px\",\"imghiddenwidth\":\"\",\"imghiddenheight\":\"\",\"borderRadiusSync\":true,\"shadowColor\":\"#000000\",\"shadowSpread\":\"-20\",\"shadowHorizontal\":\"0\",\"borderRadiusTL\":\"\",\"borderRadiusTR\":\"\",\"borderRadiusBL\":\"\",\"borderRadiusBR\":\"\",\"shadowVertical\":\"20\",\"shadowBlur\":\"20\",\"shadowPosition\":\"outline\",\"objectfit\":\"\",\"entranceAnimation\":\"\",\"hideOnDesktop\":false,\"hideOnMobile\":false,\"hideOnTablet\":false}}],\"settings\":{\"colWidth\":\"\",\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"cover\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"\",\"paddingBottom\":\"\",\"paddingLeft\":\"\",\"paddingRight\":\"\",\"paddingSync\":true,\"borderRadius\":\"\",\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\"}}],\"settings\":{\"width\":\"1000\",\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"cover\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"10\",\"paddingBottom\":\"10\",\"paddingLeft\":\"10\",\"paddingRight\":\"10\",\"paddingSync\":true,\"borderRadius\":\"\",\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\",\"bgStyle\":\"s\",\"bgGradient\":{\"type\":\"linear\",\"position\":\"center\",\"angle\":0,\"color1\":\"\",\"color1location\":0,\"color2\":\"\",\"color2location\":100},\"colGutter\":0,\"borderRadiusTL\":\"\",\"borderRadiusTR\":\"\",\"borderRadiusBL\":\"\",\"borderRadiusBR\":\"\",\"borderRadiusSync\":true,\"contentWidth\":2,\"bgDimming\":0,\"bgDimmingOverlay\":\"\",\"bgCustomDimming\":0,\"bgCustomDimmingOverlay\":\"\",\"bgCustomXPositionUnit\":\"px\",\"bgCustomXPosition\":\"\",\"bgCustomYPositionUnit\":\"px\",\"bgCustomYPosition\":\"\",\"bgCustomAttachment\":\"\",\"bgCustomRepeat\":\"\",\"bgCustomSize\":\"\",\"bgCustomSizeWidthUnit\":\"%\",\"bgCustomSizeWidth\":\"100\",\"marginBottom\":\"\",\"marginLeft\":\"\",\"marginRight\":\"\",\"marginSync\":false,\"marginTop_mobile\":\"\",\"marginBottom_mobile\":\"\",\"marginLeft_mobile\":\"\",\"marginRight_mobile\":\"\",\"marginSync_mobile\":false,\"marginTop_tablet\":\"\",\"marginBottom_tablet\":\"\",\"marginLeft_tablet\":\"\",\"marginRight_tablet\":\"\",\"marginSync_tablet\":false,\"customClass\":\"\",\"shadowColor\":\"\",\"shadowHorizontal\":0,\"shadowVertical\":0,\"shadowBlur\":3,\"shadowSpread\":0,\"shadowPosition\":\"outline\",\"paddingTop_mobile\":\"\",\"paddingBottom_mobile\":\"\",\"paddingLeft_mobile\":\"\",\"paddingRight_mobile\":\"\",\"paddingSync_mobile\":true,\"paddingTop_tablet\":\"\",\"paddingBottom_tablet\":\"\",\"paddingLeft_tablet\":\"\",\"paddingRight_tablet\":\"\",\"paddingSync_tablet\":true,\"entranceAnimation\":\"\",\"alignType\":\"s\",\"display\":\"\",\"flexDirection\":\"row\",\"justifyContent\":\"\",\"alignItems\":\"\",\"cssPosition\":\"\",\"offsetTop\":\"\",\"offsetRight\":\"\",\"offsetBottom\":\"\",\"offsetLeft\":\"\",\"zIndex\":\"\",\"overflow\":\"\",\"shapeDivider\":\"t\",\"bottomShapeType\":\"\",\"bottomShapeColor\":\"\",\"bottomshapewidth\":100,\"bottomshapeheight\":\"\",\"bottomflip\":false,\"bottomfront\":false,\"topShapeType\":\"\",\"topShapeColor\":\"\",\"topshapewidth\":100,\"topshapeheight\":\"\",\"topflip\":false,\"topfront\":false,\"hideOnDesktop\":false,\"hideOnMobile\":false,\"hideOnTablet\":false}}],\"settings\":{\"contentWidth\":1,\"width\":\"1000\",\"bgColor\":\"\",\"bgImage\":\"\",\"bgPosition\":\"cover\",\"marginTop\":\"\",\"shadow\":\"\",\"paddingTop\":\"10\",\"paddingBottom\":\"10\",\"paddingLeft\":\"10\",\"paddingRight\":\"10\",\"paddingSync\":true,\"borderRadius\":\"\",\"borderTop\":\"0\",\"borderBottom\":\"0\",\"borderLeft\":\"0\",\"borderRight\":\"0\",\"borderSync\":true,\"borderStyle\":\"solid\",\"bgStyle\":\"s\",\"bgGradient\":{\"type\":\"linear\",\"position\":\"center\",\"angle\":0,\"color1\":\"\",\"color1location\":0,\"color2\":\"\",\"color2location\":100},\"particleBg\":false,\"particleStyle\":\"default\",\"customParticlesJSON\":\"\",\"particlesOpacity\":\"0.5\",\"particlesFlowDirection\":\"left\",\"particlesAdvanceSettings\":false,\"particlesDotColor\":\"\",\"numParticles\":\"\",\"sizeParticles\":\"\",\"moveParticlesSpeed\":10,\"particlesHoverEffect\":true,\"bgDimming\":0,\"bgDimmingOverlay\":\"\",\"bgCustomDimming\":0,\"bgCustomDimmingOverlay\":\"\",\"bgCustomXPositionUnit\":\"px\",\"bgCustomXPosition\":\"\",\"bgCustomYPositionUnit\":\"px\",\"bgCustomYPosition\":\"\",\"bgCustomAttachment\":\"\",\"bgCustomRepeat\":\"\",\"bgCustomSize\":\"\",\"bgCustomSizeWidthUnit\":\"%\",\"bgCustomSizeWidth\":\"100\",\"marginBottom\":\"\",\"marginLeft\":\"\",\"marginRight\":\"\",\"marginSync\":false,\"marginTop_mobile\":\"\",\"marginBottom_mobile\":\"\",\"marginLeft_mobile\":\"\",\"marginRight_mobile\":\"\",\"marginSync_mobile\":false,\"marginTop_tablet\":\"\",\"marginBottom_tablet\":\"\",\"marginLeft_tablet\":\"\",\"marginRight_tablet\":\"\",\"marginSync_tablet\":false,\"customClass\":\"\",\"shadowColor\":\"\",\"shadowHorizontal\":0,\"shadowVertical\":0,\"shadowBlur\":3,\"shadowSpread\":0,\"shadowPosition\":\"outline\",\"paddingTop_mobile\":\"\",\"paddingBottom_mobile\":\"\",\"paddingLeft_mobile\":\"\",\"paddingRight_mobile\":\"\",\"paddingSync_mobile\":true,\"paddingTop_tablet\":\"\",\"paddingBottom_tablet\":\"\",\"paddingLeft_tablet\":\"\",\"paddingRight_tablet\":\"\",\"paddingSync_tablet\":true,\"borderRadiusTL\":\"\",\"borderRadiusTR\":\"\",\"borderRadiusBL\":\"\",\"borderRadiusBR\":\"\",\"borderRadiusSync\":true,\"shapeDivider\":\"t\",\"bottomShapeType\":\"\",\"bottomShapeColor\":\"\",\"bottomshapewidth\":100,\"bottomshapeheight\":\"\",\"bottomflip\":false,\"bottomfront\":false,\"topShapeType\":\"\",\"topShapeColor\":\"\",\"topshapewidth\":100,\"topshapeheight\":\"\",\"topflip\":false,\"topfront\":false,\"entranceAnimation\":\"\",\"hideOnDesktop\":false,\"hideOnMobile\":false,\"hideOnTablet\":false}}],\"settings\":{\"bgPosition\":\"cover\",\"bgImage\":\"https://assets.seedprod.com/93-7v88vkr23q3ujpcp.jpg\",\"backgroundColor\":\"#1F46AD\",\"bgOverlayColor\":\"#FFFFFF\",\"textFont\":\"Inter\",\"headerFont\":\"Inter\",\"linkDarkerColor\":\"#d3ae04\",\"textFontVariant\":\"400\",\"headerFontVariant\":\"700\",\"buttonColor\":\"#FBD00F\",\"linkColor\":\"#FBD00F\",\"textColor\":\"rgba(255, 255, 255, 0.75)\",\"headerColor\":\"#FFFFFF\",\"contentPosition\":\"4\",\"headCss\":\"#sp-page{color:rgba(255, 255, 255, 0.75)} #sp-page .sp-header-tag-h1,#sp-page .sp-header-tag-h2,#sp-page .sp-header-tag-h3,#sp-page .sp-header-tag-h4,#sp-page .sp-header-tag-h5,#sp-page .sp-header-tag-h6{color:#FFFFFF}#sp-page h1,#sp-page h2,#sp-page h3,#sp-page h4,#sp-page h5,#sp-page h6{color:#FFFFFF; font-family:\'Inter\';font-weight:700;font-style:normal} #sp-page a{color:#FBD00F} #sp-page a:hover{color:#d3ae04}#sp-page .btn{background-color:#FBD00F}body{background-color:undefined !important; background-image:url(\'https://assets.seedprod.com/93-7v88vkr23q3ujpcp.jpg\');}\",\"bgDimming\":0,\"placeholderCss\":\"\",\"mobileCss\":\".sp-mobile-view .sp-headline-block-wxi918kaufaj, .sp-mobile-view  #sp-wxi918kaufaj, .sp-mobile-view  #wxi918kaufaj {text-align:center !important;}.sp-mobile-view .sp-text-wrapper-to9pc086it6g, .sp-mobile-view  #sp-to9pc086it6g, .sp-mobile-view  #to9pc086it6g {text-align:left !important;}.sp-mobile-view #sp-wjkkjogg2c2 {text-align:center !important;}\",\"mobileVisibilityCss\":\"\",\"tabletVisibilityCss\":\"\",\"desktopVisibilityCss\":\"\",\"tabletCss\":\".sp-tablet-view .sp-headline-block-wxi918kaufaj, .sp-tablet-view  #sp-wxi918kaufaj, .sp-tablet-view  #wxi918kaufaj {text-align:center !important;}.sp-tablet-view .sp-text-wrapper-to9pc086it6g, .sp-tablet-view  #sp-to9pc086it6g, .sp-tablet-view  #to9pc086it6g {text-align:left !important;}.sp-tablet-view #sp-wjkkjogg2c2 {text-align:center !important;}\"}}}',22,'https://www.frequency1radio.com/?p=24',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_sp_domain_mapping`
--

DROP TABLE IF EXISTS `wp_sp_domain_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_sp_domain_mapping` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `domain` varchar(255) DEFAULT NULL,
  `path` varchar(255) DEFAULT NULL,
  `mapped_page_id` int(11) NOT NULL,
  `force_https` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sp_domain_mapping`
--

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

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

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

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

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

--
-- Table structure for table `wp_termmeta`
--

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

--
-- Dumping data for table `wp_termmeta`
--

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

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

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

--
-- Table structure for table `wp_tm_taskmeta`
--

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

--
-- Dumping data for table `wp_tm_taskmeta`
--

LOCK TABLES `wp_tm_taskmeta` WRITE;
/*!40000 ALTER TABLE `wp_tm_taskmeta` DISABLE KEYS */;
INSERT INTO `wp_tm_taskmeta` VALUES
(1,1,'task_options','a:3:{s:3:\"url\";s:31:\"https://www.frequency1radio.com\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),
(2,2,'task_options','a:3:{s:3:\"url\";s:32:\"https://www.frequency1radio.com/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),
(3,3,'task_options','a:3:{s:3:\"url\";s:55:\"https://www.frequency1radio.com/2025/07/16/hello-world/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),
(4,4,'task_options','a:3:{s:3:\"url\";s:37:\"https://www.frequency1radio.com/2025/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),
(5,5,'task_options','a:3:{s:3:\"url\";s:40:\"https://www.frequency1radio.com/2025/07/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}'),
(6,6,'task_options','a:3:{s:3:\"url\";s:43:\"https://www.frequency1radio.com/2025/07/16/\";s:12:\"preload_type\";s:6:\"manual\";s:22:\"anonymous_user_allowed\";b:0;}');
/*!40000 ALTER TABLE `wp_tm_taskmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_tm_tasks`
--

DROP TABLE IF EXISTS `wp_tm_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_tm_tasks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `type` varchar(300) NOT NULL,
  `class_identifier` varchar(300) DEFAULT '0',
  `attempts` int(11) DEFAULT 0,
  `description` varchar(300) DEFAULT NULL,
  `time_created` timestamp NOT NULL DEFAULT current_timestamp(),
  `last_locked_at` bigint(20) DEFAULT 0,
  `status` varchar(300) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_tm_tasks`
--

LOCK TABLES `wp_tm_tasks` WRITE;
/*!40000 ALTER TABLE `wp_tm_tasks` DISABLE KEYS */;
INSERT INTO `wp_tm_tasks` VALUES
(1,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://www.frequency1radio.com','2025-07-16 02:05:41',0,'active'),
(2,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://www.frequency1radio.com/','2025-07-16 02:05:41',0,'active'),
(3,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://www.frequency1radio.com/2025/07/16/hello-world/','2025-07-16 02:05:42',0,'active'),
(4,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://www.frequency1radio.com/2025/','2025-07-16 02:05:42',0,'active'),
(5,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://www.frequency1radio.com/2025/07/','2025-07-16 02:05:42',0,'active'),
(6,1,'load-url-task','WP_Optimize_Load_Url_Task',0,'Preload - https://www.frequency1radio.com/2025/07/16/','2025-07-16 02:05:42',0,'active');
/*!40000 ALTER TABLE `wp_tm_tasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

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

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES
(1,1,'nickname','wp72128'),
(2,1,'first_name',''),
(3,1,'last_name',''),
(4,1,'description',''),
(5,1,'rich_editing','true'),
(6,1,'syntax_highlighting','true'),
(7,1,'comment_shortcuts','false'),
(8,1,'admin_color','fresh'),
(9,1,'use_ssl','0'),
(10,1,'show_admin_bar_front','true'),
(11,1,'locale',''),
(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(13,1,'wp_user_level','10'),
(14,1,'dismissed_wp_pointers',''),
(15,1,'show_welcome_panel','0'),
(16,1,'session_tokens','a:5:{s:64:\"9e6fef3af4442dba0b8618633260692f2f574252de4f830fac96204fee3251e1\";a:4:{s:10:\"expiration\";i:1756691709;s:2:\"ip\";s:13:\"24.211.201.26\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36\";s:5:\"login\";i:1755482109;}s:64:\"efd4ba6cb8b6da0b108e6bdca10e8ff4fbe3f771a5b924854dd5650613f96bd7\";a:4:{s:10:\"expiration\";i:1756700459;s:2:\"ip\";s:13:\"24.211.201.26\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36\";s:5:\"login\";i:1755490859;}s:64:\"7cf5a9932d5f8a153a8a25088ee30fa267a7ba39c20544311fe9797922d78b50\";a:4:{s:10:\"expiration\";i:1757247219;s:2:\"ip\";s:13:\"24.211.201.26\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36\";s:5:\"login\";i:1756037619;}s:64:\"f2c9cdbc6f9f48af1902aa42b704a46638de3cf29e6328ce40cfaf685e57e4d2\";a:4:{s:10:\"expiration\";i:1757252593;s:2:\"ip\";s:13:\"24.211.201.26\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36\";s:5:\"login\";i:1756042993;}s:64:\"4b39b9ba89a94f605a5789a0894abf5f17b23492c8eaaf6c74e6117404db98ac\";a:4:{s:10:\"expiration\";i:1757289022;s:2:\"ip\";s:13:\"24.211.201.26\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36\";s:5:\"login\";i:1756079422;}}'),
(17,1,'wp_dashboard_quick_press_last_post_id','19'),
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"24.211.201.0\";}'),
(19,1,'wp_user-settings','unfold=1&mfold=o'),
(20,1,'wp_user-settings-time','1755483137'),
(21,1,'closedpostboxes_dashboard','a:0:{}'),
(22,1,'metaboxhidden_dashboard','a:5:{i:0;s:21:\"dashboard_site_health\";i:1;s:19:\"dashboard_right_now\";i:2;s:18:\"dashboard_activity\";i:3;s:21:\"dashboard_quick_press\";i:4;s:17:\"dashboard_primary\";}'),
(23,1,'seedprod_personalization_preferences','{\"show_templatetag_settings\":true,\"show_woocommerce_templatetag_settings\":true,\"show_edd_templatetag_settings\":true,\"show_entry_settings\":true,\"show_entry_settings_2\":true,\"show_entry_settings_4\":true,\"show_entry_settings_5\":true,\"show_entry_settings_3\":false,\"show_entry_settings_6\":true,\"show_layoutnav\":false}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES
(1,'wp72128','$wp$2y$10$jDdFRjytUEPG0Ljz6vX8kuLbCuW5zBVdW0WSI1J4R.f4yowbI.wEy','wp72128','customerservice@frequency1radio.com','https://www.frequency1radio.com','2025-07-16 02:05:23','',0,'wp72128');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpo_404_detector`
--

DROP TABLE IF EXISTS `wp_wpo_404_detector`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpo_404_detector` (
  `ID` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `url` text NOT NULL,
  `request_timestamp` bigint(20) unsigned NOT NULL,
  `request_count` bigint(20) unsigned NOT NULL,
  `referrer` text NOT NULL,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `url` (`url`(75),`request_timestamp`,`referrer`(75)),
  KEY `url_timestamp_referrer` (`url`(75),`request_timestamp`,`referrer`(75)),
  KEY `timestamp_count` (`request_timestamp`,`request_count`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpo_404_detector`
--

LOCK TABLES `wp_wpo_404_detector` WRITE;
/*!40000 ALTER TABLE `wp_wpo_404_detector` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpo_404_detector` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2026-05-06  0:56:31
